import { ReactNode } from 'react'; import * as DropdownMenu from '@radix-ui/react-dropdown-menu'; type DropdownProps = { children: ReactNode[]; side?: 'top' | 'right' | 'bottom' | 'left'; align?: 'start' | 'center' | 'end'; }; export function Dropdown({ side = 'bottom', align = 'center', children, }: DropdownProps): JSX.Element { return ( {children[0]} {children[1]} ); }