| 4 | import classes from './ImageCheckboxes.module.css'; |
| 5 | |
| 6 | interface ImageCheckboxProps { |
| 7 | checked?: boolean; |
| 8 | defaultChecked?: boolean; |
| 9 | onChange?: (checked: boolean) => void; |
| 10 | title: string; |
| 11 | description: string; |
| 12 | image: string; |
| 13 | } |
| 14 | |
| 15 | export function ImageCheckbox({ |
| 16 | checked, |
nothing calls this directly
no outgoing calls
no test coverage detected