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.
This commit is contained in:
Antoine Moreaux
2025-01-31 16:24:01 +01:00
committed by GitHub
parent 66296a4787
commit f47c0d45e3

View File

@ -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 <IconMicrosoftRaw height={size} width={size} />;
return <IconMicrosoftOutlookRaw height={size} width={size} />;
};