| 7 | import { cx } from "@/utils/cx"; |
| 8 | |
| 9 | interface NativeSelectProps extends Omit<SelectHTMLAttributes<HTMLSelectElement>, "size"> { |
| 10 | label?: string; |
| 11 | hint?: string; |
| 12 | selectClassName?: string; |
| 13 | size?: "sm" | "md" | "lg"; |
| 14 | options: { label: string; value: string; disabled?: boolean }[]; |
| 15 | } |
| 16 | |
| 17 | const styles = { |
| 18 | sm: { |
nothing calls this directly
no outgoing calls
no test coverage detected