Select
A dropdown select component for choosing from a list of options.
Installation
npm install fuyukaki-uiUsage
import { Select } from 'fuyukaki-ui'
const options = [
{ value: '1', label: 'Option 1' },
{ value: '2', label: 'Option 2' },
]
function App() {
return <Select options={options} placeholder="Select option" />
}