@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 1.33 kB
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="m13.716 1.947 3.735 1.434-.717 1.867-.934-.359-.746 1.945a6 6 0 0 1 1.945 1.846l1.902-.847-.406-.914 1.827-.813 1.627 3.654-1.827.813-.407-.913-1.902.847a6 6 0 0 1 .07 2.68l1.944.746.358-.933 1.867.716-1.433 3.735-1.867-.717.357-.933-1.944-.747A6 6 0 0 1 15.32 17l.848 1.903.914-.407.813 1.827-3.654 1.627-.813-1.827.913-.407-.847-1.902a6 6 0 0 1-2.68.07l-.747 1.944.934.358-.717 1.867L6.55 20.62l.717-1.867.932.358.748-1.944A6 6 0 0 1 7 15.319l-1.903.848.407.914-1.827.813L2.05 14.24l1.827-.813.406.914 1.903-.848a6 6 0 0 1-.07-2.68l-1.945-.746-.358.933-1.867-.716 1.434-3.735 1.867.717-.36.933 1.946.747A6 6 0 0 1 8.68 7l-.848-1.903-.913.407-.814-1.827L9.76 2.051l.813 1.827-.914.407.848 1.902a6 6 0 0 1 2.68-.07l.745-1.945L13 3.815zm-3.582 11.285a1 1 0 1 0 1.732 1 1 1 0 0 0-1.732-1M14 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-3.5-1.598a1 1 0 1 0 1 1.732 1 1 0 0 0-1-1.732"/>
</Svg>);
});
Icon.displayName = 'VirusFill';
/**
* Remix Icon: Virus Fill
* @see {@link https://remixicon.com/icon/virus-fill Remix Icon Docs}
*/
export const VirusFill = Icon;