({ className, options, ...props })
| 12 | }; |
| 13 | |
| 14 | export const Select: FC<Props> = ({ className, options, ...props }) => ( |
| 15 | <select className={variants('select', { className })} {...props}> |
| 16 | {options.map((option) => ( |
| 17 | <option key={option.value} value={option.value}> |
| 18 | {option.label} |
| 19 | </option> |
| 20 | ))} |
| 21 | </select> |
| 22 | ); |
nothing calls this directly
no outgoing calls
no test coverage detected