mirror of
https://github.com/lingble/twenty.git
synced 2025-10-29 20:02:29 +00:00
27 lines
816 B
TypeScript
27 lines
816 B
TypeScript
import { useTheme } from '@emotion/react';
|
|
import { IllustrationIconWrapper } from '@ui/display/icon/components/IllustrationIconWrapper';
|
|
|
|
import IllustrationIconSettingRaw from '@ui/display/icon/assets/illustration-setting.svg?react';
|
|
import { IconComponentProps } from '@ui/display/icon/types/IconComponent';
|
|
|
|
type IllustrationIconSettingProps = Pick<IconComponentProps, 'size'>;
|
|
|
|
export const IllustrationIconSetting = (
|
|
props: IllustrationIconSettingProps,
|
|
) => {
|
|
const theme = useTheme();
|
|
const size = props.size ?? theme.icon.size.lg;
|
|
const { color, fill } = theme.IllustrationIcon;
|
|
|
|
return (
|
|
<IllustrationIconWrapper>
|
|
<IllustrationIconSettingRaw
|
|
height={size}
|
|
width={size}
|
|
fill={fill.blue}
|
|
color={color.blue}
|
|
/>
|
|
</IllustrationIconWrapper>
|
|
);
|
|
};
|