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