Input
A text input component for collecting user input.
Installation
npm install fuyukaki-uiUsage
import { Input } from 'fuyukaki-ui'
function App() {
return <Input placeholder="Enter text..." />
}Examples
Props
| Prop | Type | Default |
|---|---|---|
| type | 'text' | 'email' | 'password' | 'number' | etc. | 'text' |
| placeholder | string | - |
| disabled | boolean | false |
