import clsx from 'clsx'; import Overlay from './Overlay'; interface DropdownProps { stretchLeft?: boolean dimensions?: string children: React.ReactNode } function Dropdown({ dimensions = 'w-fit', stretchLeft, children }: DropdownProps) { return ( {children} ); } export default Dropdown;