A dropdown menu that lets users choose options from a list
| Prop | Type | Description |
|---|---|---|
| onChange | (event: ChangeEvent<HTMLTextAreaElement>) => void | onChane property |
| name | string | HTML name attribute |
| options | Array<string> | Available options |
| value | string | number | Actual selected value |
| className? | string | Sets class attribute |
| label? | string | Label assosiated with this select |
| error? | string | Error message |
| values? | Array<string | number> | Corresponding to options array of values |
import { Select } from "@brick-uikit/input";