| 3 | import { ReactNode } from "react"; |
| 4 | |
| 5 | interface CheckboxProps { |
| 6 | value: boolean; |
| 7 | label: string; |
| 8 | onValueChange: (tableName: string, value: boolean) => void; |
| 9 | } |
| 10 | const Checkbox = (props: CheckboxProps & { children?: ReactNode }) => { |
| 11 | const { value, label, onValueChange, children } = props; |
| 12 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected