

import type { LucideIcon } from "lucide-react";
import {
    ArrowUpToLine,
    Building,
    CreditCard,
    Users,
    Webhook,
} from "lucide-react";
// buzzwareTech imports
import type { ISvgIcons } from "@buzzwaretech/propel/icons";
import type { TWorkspaceSettingsTabs } from "@buzzwaretech/types";

export const WORKSPACE_SETTINGS_ICONS: Record<
  TWorkspaceSettingsTabs,
  LucideIcon | React.FC<ISvgIcons>
> = {
  general: Building,
  members: Users,
  export: ArrowUpToLine,
  "billing-and-plans": CreditCard,
  webhooks: Webhook,
};
