@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 594 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M15.2459 14H8.75407L7.15407 18H5L11 3H13L19 18H16.8459L15.2459 14ZM14.4459 12L12 5.88516L9.55407 12H14.4459ZM3 20H21V22H3V20Z"/>
</Svg>);
};
Icon.displayName = 'FontColor';
/**
* Remix Icon: Font Color
* @see {@link https://remixicon.com/icon/font-color Remix Icon Docs}
*/
export const FontColor = memo(Icon);