import clsx from 'clsx'; import { PARAMETER } from '@/utils/constants'; import { type Styling } from '../props'; interface DropdownProps extends 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. */ export function Dropdown({ isOpen, stretchLeft, stretchTop, className, children, style, ...restProps }: React.PropsWithChildren) { return (
{children}
); }