import type { BulkAction } from "@/components/grid/types";

export const commonBulkActions = (extra: BulkAction[] = []): BulkAction[] => [
  ...extra,
  { label: "Bulk export" },
  { label: "Delete", destructive: true },
];

export const statusBulkActions = (labels: string[]): BulkAction[] =>
  labels.map((label) => ({ label }));
