A select input component that allows users to choose one or multiple options.
| Prop | Type | Description |
|---|---|---|
| className | string | Additional CSS classes. |
| name | string | Identifier for the input in form submission. |
| label | string | Label text for the input field. |
| options | Array | Available select options. |
| multiple | boolean | Allows multiple file selection. |
| callback | function | Function called when the value changes. |
| register | function | Function to register the input with the useForm hook. |
| disabled | boolean | Disables interaction with the input field. |