@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.08 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" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M17.128 2.51a1 1 0 0 1 1.744.98l-.142.243c-.255.416-.622.878-1.276 1.122-.698.26-1.56.208-2.63.018-.475-.084-.774-.029-.962.05a.932.932 0 0 0-.285.186c.59.086 1.135.219 1.603.394.427.16.843.375 1.17.665.292.26.585.648.64 1.158L17 7.5v12c0 .596-.326 1.044-.65 1.332-.328.29-.743.505-1.17.665-.863.323-1.987.503-3.18.503s-2.317-.18-3.18-.503c-.427-.16-.843-.375-1.17-.665-.292-.26-.585-.648-.64-1.158L7 19.5v-12c0-.596.326-1.044.65-1.332.327-.29.743-.505 1.17-.665.7-.262 1.571-.43 2.512-.484.1-.272.23-.539.394-.79.31-.471.753-.896 1.365-1.152.61-.255 1.31-.31 2.084-.173.14.025.267.046.383.062l.32.04c.048.005.094.01.137.013l.235.013.098.002.163-.006a1.51 1.51 0 0 0 .066-.007l.105-.018.092-.029.045-.025c.058-.043.144-.145.31-.44Zm-6.127 4.542c-.589.064-1.096.18-1.478.324l-.135.053c-.123.055-.123.087 0 .141l.135.054c.526.198 1.288.344 2.176.371L12 8a1 1 0 0 1-.999-.948m1.998 0a1 1 0 0 1-.886.942L12 8c1.016 0 1.892-.156 2.477-.376l.135-.054c.123-.054.123-.086 0-.14l-.135-.054A6.214 6.214 0 0 0 13 7.052Z"/>
</G>
</Svg>);
};
Icon.displayName = 'FirecrackerFill';
/**
* MingCute Icon: Firecracker Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FirecrackerFill = memo(Icon);