@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.28 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none">
<Path d="M24,0 L24,24 L0,24 L0,0 L24,0 Z M12.594,23.258 L12.582,23.26 L12.511,23.295 L12.491,23.299 L12.477,23.295 L12.406,23.259 C12.396,23.256 12.387,23.259 12.382,23.265 L12.378,23.275 L12.361,23.703 L12.366,23.723 L12.376,23.736 L12.48,23.81 L12.495,23.814 L12.507,23.81 L12.611,23.736 L12.623,23.72 L12.627,23.703 L12.61,23.276 C12.608,23.266 12.601,23.259 12.594,23.258 M12.858,23.145 L12.844,23.147 L12.66,23.24 L12.65,23.25 L12.647,23.261 L12.665,23.691 L12.67,23.703 L12.678,23.711 L12.879,23.803 C12.891,23.807 12.902,23.803 12.908,23.795 L12.912,23.781 L12.878,23.167 C12.875,23.155 12.868,23.147 12.858,23.145 M12.143,23.147 C12.1336684,23.1427606 12.1226578,23.1452075 12.116,23.153 L12.11,23.167 L12.076,23.781 C12.076,23.793 12.083,23.801 12.093,23.805 L12.108,23.803 L12.309,23.71 L12.319,23.702 L12.322,23.691 L12.34,23.261 L12.337,23.249 L12.327,23.239 L12.143,23.147 Z"/>
<Path fill={color} d="M12,2 C17.523,2 22,6.477 22,12 C22,17.523 17.523,22 12,22 C6.477,22 2,17.523 2,12 C2,6.477 6.477,2 12,2 M12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 M12.2,6.4 C12.4570298,6.05722264 12.9038613,5.91626624 13.3110553,6.04950917 C13.7182493,6.18275209 13.9953212,6.56058578 14,6.989 L13.994,7.111 L13.64,10.296 L15.336,10.014 C15.7147578,9.95131735 16.095964,10.1110031 16.3169648,10.4249223 C16.5379656,10.7388415 16.5597411,11.1515684 16.373,11.487 L16.3,11.6 L11.8,17.6 C11.5429702,17.9427774 11.0961387,18.0837338 10.6889447,17.9504908 C10.2817507,17.8172479 10.0046788,17.4394142 10,17.011 L10.006,16.89 L10.36,13.704 L8.664,13.986 C8.28524218,14.0486827 7.90403601,13.8889969 7.68303521,13.5750777 C7.46203441,13.2611585 7.44025894,12.8484316 7.627,12.513 L7.7,12.4 L12.2,6.4 Z"/>
</G>
</Svg>);
};
Icon.displayName = 'FlashCircleLine';
/**
* MingCute Icon: Flash Circle Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FlashCircleLine = memo(Icon);