@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 882 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 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.82598L12 1ZM12 7C10.8954 7 10 7.89543 10 9C10 9.74025 10.4022 10.3866 10.9999 10.7324L11 15H13L13.0011 10.7318C13.5983 10.3858 14 9.73984 14 9C14 7.89543 13.1046 7 12 7Z"/>
</Svg>);
};
Icon.displayName = 'ShieldKeyholeFill';
/**
* Remix Icon: Shield Keyhole Fill
* @see {@link https://remixicon.com/icon/shield-keyhole-fill Remix Icon Docs}
*/
export const ShieldKeyholeFill = memo(Icon);