Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 675 Bytes

File metadata and controls

40 lines (27 loc) · 675 Bytes

Input

A styled text input field.

Import

import { Input } from '@florex/ui';

Usage

<Input placeholder="Enter your name" />

Props

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

Examples

With label

<Label htmlFor="email">Email</Label>
<Input id="email" type="email" placeholder="you@example.com" />

Disabled

<Input placeholder="Disabled input" disabled />