import { forwardRef } from 'react'; import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu'; import { ChevronRightIcon } from 'lucide-react'; import { cn } from '#utils'; export const DropdownMenuSubTrigger = forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & { inset?: boolean; } >(function DropdownMenuSubTrigger({ children, className, inset, ...props }, ref) { return ( {children} ); });