@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.11 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 Z M12.333,6.5 L7.833,12.5 C7.64350564,12.7525009 7.61303478,13.0904268 7.75430365,13.3727528 C7.89557253,13.6550787 8.18430274,13.8332844 8.5,13.833 L10.556,13.833 L10.173,16.896 C10.1247979,17.2715672 10.3359599,17.6323948 10.6870046,17.7743165 C11.0380493,17.9162382 11.4406484,17.8035442 11.667,17.5 L16.167,11.5 C16.3564944,11.2474991 16.3869652,10.9095732 16.2456963,10.6272472 C16.1044275,10.3449213 15.8156973,10.1667156 15.5,10.167 L13.444,10.167 L13.827,7.103 C13.8746193,6.7276348 13.6632692,6.36732736 13.312397,6.2257103 C12.9615249,6.08409325 12.5592815,6.19674545 12.333,6.5 Z"/>
</G>
</Svg>);
};
Icon.displayName = 'FlashCircleFill';
/**
* MingCute Icon: Flash Circle Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FlashCircleFill = memo(Icon);