From f47c0d45e3b5ff9b4ff50cd898fa3b6eef0e721b Mon Sep 17 00:00:00 2001 From: Antoine Moreaux Date: Fri, 31 Jan 2025 16:24:01 +0100 Subject: [PATCH] fix(icon): update Microsoft Outlook icon import (#9953) Replaced the incorrect Microsoft icon with the correct Microsoft Outlook icon. This ensures the displayed icon matches the intended usage and improves consistency. --- .../src/display/icon/components/IconMicrosoftOutlook.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/twenty-ui/src/display/icon/components/IconMicrosoftOutlook.tsx b/packages/twenty-ui/src/display/icon/components/IconMicrosoftOutlook.tsx index 913eb6c46..153d0af09 100644 --- a/packages/twenty-ui/src/display/icon/components/IconMicrosoftOutlook.tsx +++ b/packages/twenty-ui/src/display/icon/components/IconMicrosoftOutlook.tsx @@ -1,6 +1,6 @@ import { useTheme } from '@emotion/react'; -import IconMicrosoftRaw from '../assets/microsoft.svg?react'; +import IconMicrosoftOutlookRaw from '../assets/microsoft-outlook.svg?react'; interface IconMicrosoftOutlookProps { size?: number; @@ -10,5 +10,5 @@ export const IconMicrosoftOutlook = (props: IconMicrosoftOutlookProps) => { const theme = useTheme(); const size = props.size ?? theme.icon.size.lg; - return ; + return ; };