feat: use colored icons for Teams and Zoom in connector list

- Replace IconBrandWindows with Teams SVG icon
- Replace IconBrandZoom with Zoom SVG icon
- Remove unused Tabler icon imports
- Use getConnectorIcon helper for consistency
This commit is contained in:
CREDO23 2025-12-31 21:53:58 +02:00
parent 9548dd289c
commit e2c062c079

View file

@ -1,4 +1,3 @@
import { IconBrandWindows, IconBrandZoom } from "@tabler/icons-react";
import { EnumConnectorName } from "@/contracts/enums/connector";
import { getConnectorIcon } from "@/contracts/enums/connectorIcons";
import type { ConnectorCategory } from "./types";
@ -73,7 +72,7 @@ export const connectorCategories: ConnectorCategory[] = [
id: "ms-teams",
title: "Microsoft Teams",
description: "teams_desc",
icon: <IconBrandWindows className="h-6 w-6" />,
icon: getConnectorIcon("ms-teams", "h-6 w-6"),
status: "coming-soon",
},
],
@ -208,7 +207,7 @@ export const connectorCategories: ConnectorCategory[] = [
id: "zoom",
title: "Zoom",
description: "zoom_desc",
icon: <IconBrandZoom className="h-6 w-6" />,
icon: getConnectorIcon("zoom", "h-6 w-6"),
status: "coming-soon",
},
],