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