import { IconDots } from "@tabler/icons-react"; import { type ReactNode } from "react"; import { Button } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuContent, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu"; interface RowActionsMenuProps { ariaLabel: string; disabled?: boolean; children: ReactNode; } export function RowActionsMenu({ ariaLabel, disabled = false, children, }: RowActionsMenuProps) { return ( {children} ); }