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