@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 641 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="m12 18.178 4.62-1.256.623-6.778H9.026L8.822 7.89h8.626l.227-2.211H6.325l.636 6.678h7.82l-.261 2.866-2.52.667-2.52-.667-.158-1.844h-2.27l.329 3.544zM3 2h18l-1.623 18L12 22l-7.377-2z"/>
</Svg>);
});
Icon.displayName = 'Html5Fill';
/**
* Remix Icon: Html5 Fill
* @see {@link https://remixicon.com/icon/html5-fill Remix Icon Docs}
*/
export const Html5Fill = Icon;