diff --git a/ui/components/icons/Icons.tsx b/ui/components/icons/Icons.tsx index 2561fd1cf1..0cb893040f 100644 --- a/ui/components/icons/Icons.tsx +++ b/ui/components/icons/Icons.tsx @@ -995,13 +995,17 @@ export const AzureIcon: React.FC = ({ return ( - + ); }; @@ -1010,6 +1014,7 @@ export const M365Icon: React.FC = ({ size = 24, width, height, + strokeWidth = 2, ...props }) => { return ( @@ -1017,16 +1022,27 @@ export const M365Icon: React.FC = ({ xmlns="http://www.w3.org/2000/svg" width={size || width} height={size || height} - viewBox="0 0 24 24" + viewBox="0 0 48 48" fill="none" stroke="currentColor" - strokeWidth="2" strokeLinecap="round" - strokeLinejoin="round" {...props} > - - + + + ); }; @@ -1046,7 +1062,7 @@ export const GCPIcon: React.FC = ({ fill="currentColor" {...props} > - + ); }; @@ -1078,3 +1094,26 @@ export const MutedIcon: React.FC = ({ ); }; + +export const KubernetesIcon: React.FC = ({ + size = 24, + width, + height, + ...props +}) => { + return ( + + + + ); +}; diff --git a/ui/lib/menu-list.ts b/ui/lib/menu-list.ts index ce7de725ab..a6c02d6a3a 100644 --- a/ui/lib/menu-list.ts +++ b/ui/lib/menu-list.ts @@ -3,7 +3,6 @@ import { AlertCircle, Bookmark, - Boxes, CloudCog, Group, LayoutGrid, @@ -26,6 +25,7 @@ import { CircleHelpIcon, DocIcon, GCPIcon, + KubernetesIcon, M365Icon, SupportIcon, } from "@/components/icons/Icons"; @@ -108,7 +108,7 @@ export const getMenuList = (pathname: string): GroupProps[] => { { href: "/findings?filter[status__in]=FAIL&filter[severity__in]=critical%2Chigh%2Cmedium&filter[provider_type__in]=kubernetes&sort=severity,-inserted_at", label: "Kubernetes", - icon: Boxes, + icon: KubernetesIcon, }, ], defaultOpen: false,