@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 756 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="M3.78307 2.82598L12 1L20.2169 2.82598C20.6745 2.92766 21 3.33347 21 3.80217V13.7889C21 15.795 19.9974 17.6684 18.3282 18.7812L12 23L5.6718 18.7812C4.00261 17.6684 3 15.795 3 13.7889V3.80217C3 3.33347 3.32553 2.92766 3.78307 2.82598ZM13 10V5L8 12H11V17L16 10H13Z"/>
</Svg>);
};
Icon.displayName = 'ShieldFlashFill';
/**
* Remix Icon: Shield Flash Fill
* @see {@link https://remixicon.com/icon/shield-flash-fill Remix Icon Docs}
*/
export const ShieldFlashFill = memo(Icon);