| 4 | import Icon from "../Icon"; |
| 5 | |
| 6 | interface Props<T = any> { |
| 7 | value: T; |
| 8 | itemList: { |
| 9 | value: T; |
| 10 | label: string; |
| 11 | }[]; |
| 12 | className?: string; |
| 13 | placeholder?: string; |
| 14 | onValueChange: (value: T) => void; |
| 15 | } |
| 16 | |
| 17 | const Select = (props: Props) => { |
| 18 | const { itemList, value, placeholder, className, onValueChange } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected