| 4 | import { classNames } from "../lib/utils"; |
| 5 | |
| 6 | export interface SelectBoxOption { |
| 7 | id: string | null; |
| 8 | name: string; |
| 9 | icon?: React.ReactNode; |
| 10 | description?: string; |
| 11 | } |
| 12 | |
| 13 | export default function SelectBox(props: { |
| 14 | title?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected