import clsx from 'clsx'; import { Checkbox, type CheckboxProps } from '../input1'; /** Animated {@link Checkbox} inside a {@link Dropdown} item. */ export function DropdownCheckbox({ onChange: setValue, disabled, ...restProps }: CheckboxProps) { return (
); }