import * as DropdownMenu from '@radix-ui/react-dropdown-menu'; import { forwardRef } from 'react'; import { twMerge } from 'tailwind-merge'; import type { ComponentPropsWithRef, ElementRef } from 'react'; export const Root = DropdownMenu.Root; export const Trigger = DropdownMenu.Trigger; export const Portal = DropdownMenu.Portal; export const Separator = forwardRef< ElementRef, ComponentPropsWithRef >(function Separator({ className, ...other }, forwardedRef) { return ( ); }); export const Content = forwardRef(function Content( { className, children, ...other }, forwardedRef, ) { return ( {children} ); }); export const Item = forwardRef(function Item( { className, children, ...other }, forwardedRef, ) { return ( {children} ); });