@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 725 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="M12 18.1778L16.6192 16.9222L17.2434 10.1444H9.02648L8.82219 7.88889H17.4477L17.6747 5.67778H6.32535L6.96091 12.3556H14.7806L14.5195 15.2222L12 15.8889L9.48045 15.2222L9.32156 13.3778H7.0517L7.38083 16.9222L12 18.1778ZM3 2H21L19.377 20L12 22L4.62295 20L3 2Z"/>
</Svg>);
};
Icon.displayName = 'Html5Fill';
/**
* Remix Icon: Html5 Fill
* @see {@link https://remixicon.com/icon/html5-fill Remix Icon Docs}
*/
export const Html5Fill = memo(Icon);