Need to create a new branch because original branch name is `main` and we cannot push additional commits Linked to https://github.com/twentyhq/twenty/pull/4718   --------- Co-authored-by: DGamer007 <prajapatidhruv266@gmail.com>
15 lines
359 B
TypeScript
15 lines
359 B
TypeScript
import { useTheme } from '@emotion/react';
|
|
|
|
import IconMicrosoftRaw from '../assets/microsoft.svg?react';
|
|
|
|
interface IconMicrosoftProps {
|
|
size?: number;
|
|
}
|
|
|
|
export const IconMicrosoft = (props: IconMicrosoftProps) => {
|
|
const theme = useTheme();
|
|
const size = props.size ?? theme.icon.size.lg;
|
|
|
|
return <IconMicrosoftRaw height={size} width={size} />;
|
|
};
|