import clsx from 'clsx'; import Checkbox from './Checkbox'; interface DropdownCheckboxProps { value: boolean label?: string title?: string disabled?: boolean setValue?: (newValue: boolean) => void } function DropdownCheckbox({ title, setValue, disabled, ...restProps }: DropdownCheckboxProps) { return (
); } export default DropdownCheckbox;