https://github.com/twentyhq/twenty/issues/6950 Add new icons to Object Fields Data types. Before:  After:  
23 lines
775 B
TypeScript
23 lines
775 B
TypeScript
import { useTheme } from '@emotion/react';
|
|
import IllustrationIconMapRaw from '@ui/display/icon/assets/illustration-map.svg?react';
|
|
import { IllustrationIconWrapper } from '@ui/display/icon/components/IllustrationIconWrapper';
|
|
import { IconComponentProps } from '@ui/display/icon/types/IconComponent';
|
|
|
|
type IllustrationIconMapProps = Pick<IconComponentProps, 'size'>;
|
|
|
|
export const IllustrationIconMap = (props: IllustrationIconMapProps) => {
|
|
const theme = useTheme();
|
|
const size = props.size ?? theme.icon.size.lg;
|
|
const { color, fill } = theme.IllustrationIcon;
|
|
return (
|
|
<IllustrationIconWrapper>
|
|
<IllustrationIconMapRaw
|
|
height={size}
|
|
width={size}
|
|
fill={fill}
|
|
color={color}
|
|
/>
|
|
</IllustrationIconWrapper>
|
|
);
|
|
};
|