@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 602 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="M2.8 14H4.83961L4.2947 16.7245L10.0393 18.8787L17.2665 16.4697L18.3604 11H3.4L3.8 9H18.7604L19.5604 5H4.6L5 3H22L19 18L10 21L2 18L2.8 14Z"/>
</Svg>);
};
Icon.displayName = 'Css3Line';
/**
* Remix Icon: Css3 Line
* @see {@link https://remixicon.com/icon/css3-line Remix Icon Docs}
*/
export const Css3Line = memo(Icon);