"use client"; import { DropdownMenuItem } from "@prototype/components/ui/dropdown-menu"; import { Separator } from "@prototype/components/ui/separator"; import { cn } from "@prototype/lib/utils"; import type { ComponentProps, ReactNode } from "react"; type ReviewDropdownMenuItemProps = ComponentProps & { selected?: boolean; children: ReactNode; }; export function ReviewDropdownMenuItem({ selected = false, className, children, ...props }: ReviewDropdownMenuItemProps) { return ( {children} ); } export function ReviewDropdownMenuSeparator({ className, }: { className?: string; }) { return ; }