import { TrashIcon } from "outline-icons"; import { MenuItem } from "@shared/editor/types"; import { Dictionary } from "~/hooks/useDictionary"; export default function tableMenuItems(dictionary: Dictionary): MenuItem[] { return [ { name: "deleteTable", tooltip: dictionary.deleteTable, icon: TrashIcon, active: () => false, }, ]; }