import Checkbox from './Checkbox'; interface DropdownCheckboxProps { value: boolean label?: string tooltip?: string disabled?: boolean setValue?: (newValue: boolean) => void } function DropdownCheckbox({ tooltip, setValue, disabled, ...props }: DropdownCheckboxProps) { const behavior = (setValue && !disabled) ? 'clr-hover' : ''; return (
); } export default DropdownCheckbox;