@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 750 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="M21 7v13.993A1 1 0 0 1 20.007 22H3.993A.993.993 0 0 1 3 21.008V2.992C3 2.455 3.447 2 3.998 2h11.999zM8 8v5.6c0 .85.446 1.643 1.187 2.114L12 17.5l2.813-1.786A2.51 2.51 0 0 0 16 13.6V8zm2 2h4v3.6c0 .158-.09.318-.26.425L12 15.131l-1.74-1.106c-.17-.107-.26-.267-.26-.425z"/>
</Svg>);
});
Icon.displayName = 'FileShieldFill';
/**
* Remix Icon: File Shield Fill
* @see {@link https://remixicon.com/icon/file-shield-fill Remix Icon Docs}
*/
export const FileShieldFill = Icon;