import { cn } from "#/utils/utils"; interface ContextMenuListItemProps { testId?: string; onClick: (event: React.MouseEvent) => void; isDisabled?: boolean; } export function ContextMenuListItem({ children, testId, onClick, isDisabled, }: React.PropsWithChildren) { return ( ); }