import clsx from 'clsx'; import { CProps } from '@/components/props'; import { PARAMETER } from '@/utils/constants'; interface DropdownProps extends CProps.Styling { /** Indicates whether the dropdown should stretch to the left. */ stretchLeft?: boolean; /** Indicates whether the dropdown should stretch to the top. */ stretchTop?: boolean; /** Indicates whether the dropdown is open. */ isOpen: boolean; } /** * Animated list of children with optional positioning and visibility control. */ function Dropdown({ isOpen, stretchLeft, stretchTop, className, children, style, ...restProps }: React.PropsWithChildren) { return (
{children}
); } export default Dropdown;