@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 596 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m5 3-.65 3.34h13.59L17.5 8.5H3.92l-.66 3.33h13.59l-.76 3.81-5.48 1.81-4.75-1.81.33-1.64H2.85l-.79 4 7.85 3 9.05-3 1.2-6.03.24-1.21L21.94 3z"/>
</Svg>);
});
Icon.displayName = 'Css3Fill';
/**
* Remix Icon: Css3 Fill
* @see {@link https://remixicon.com/icon/css3-fill Remix Icon Docs}
*/
export const Css3Fill = Icon;