A styled text input field.
import { Input } from '@florex/ui';<Input placeholder="Enter your name" />Accepts all native <input> HTML attributes.
| Prop | Type | Default | Description |
|---|---|---|---|
| className | string |
— | Additional CSS classes |
| placeholder | string |
— | Placeholder text |
| disabled | boolean |
false |
Disables the input |
<Label htmlFor="email">Email</Label>
<Input id="email" type="email" placeholder="you@example.com" /><Input placeholder="Disabled input" disabled />