@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 583 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="M17 13a4 4 0 0 1 0 8c-2.142 0-4-1.79-4-4h-2a4 4 0 1 1-.535-2h3.07A4 4 0 0 1 17 13M2 12v-2h2V7a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3h2v2z"/>
</Svg>);
});
Icon.displayName = 'SpyFill';
/**
* Remix Icon: Spy Fill
* @see {@link https://remixicon.com/icon/spy-fill Remix Icon Docs}
*/
export const SpyFill = Icon;