mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
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:
parent
9548dd289c
commit
e2c062c079
1 changed files with 2 additions and 3 deletions
|
|
@ -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",
|
||||
},
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue