Select

A dropdown select component for choosing from a list of options.

Installation

npm install fuyukaki-ui

Usage

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" />
}

Examples