| 2 | import { createStyles } from '../styles/use-styles' |
| 3 | |
| 4 | interface CheckboxProps { |
| 5 | label?: string |
| 6 | checked?: boolean |
| 7 | onChange?: (checked: boolean) => void |
| 8 | description?: string |
| 9 | } |
| 10 | |
| 11 | export function Checkbox(props: CheckboxProps) { |
| 12 | const styles = createStyles() |
nothing calls this directly
no outgoing calls
no test coverage detected