import clsx from 'clsx'; import { motion } from 'framer-motion'; import { animateDropdownItem } from '@/styling/animations'; import Checkbox, { CheckboxProps } from './Checkbox'; /** DropdownCheckbox animated component that renders a {@link Checkbox} inside a {@link Dropdown} item. */ function DropdownCheckbox({ setValue, disabled, ...restProps }: CheckboxProps) { return ( ); } export default DropdownCheckbox;