Input
Text entry with prefix/suffix icons, search clear, and password toggle
Preview
Props
type
Input type (password shows eye toggle; search shows clear X)
label
Input label text
placeholder
Placeholder text
value
Input value
error
Error message
disabled
Disables the input
fullWidth
Makes input full width
variant
Visual variant
clearable
Show custom clear (X) button when there is a value
Code
<Input
type="text"
label="Label"
placeholder="Enter text..."
prefix={<span>⌕</span>}
suffix={<span>⌘K</span>}
clearable
/>