@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 649 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const ShieldFlashFill = /* @__PURE__ */ memo(function ShieldFlashFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M3.783 2.826 12 1l8.217 1.826a1 1 0 0 1 .783.976v9.987a6 6 0 0 1-2.672 4.992L12 23l-6.328-4.219A6 6 0 0 1 3 13.79V3.802a1 1 0 0 1 .783-.976M13 10V5l-5 7h3v5l5-7z"/>
</Svg>);
});
/**
* Remix Icon: Shield Flash Fill
* @see {@link https://remixicon.com/icon/shield-flash-fill Remix Icon Docs}
*/
export { ShieldFlashFill };