@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.46 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.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.9.9 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-.173q.21.038.383.062l.32.04q.072.008.137.013l.235.013.098.002.163-.006.066-.007.105-.018.092-.029.045-.025c.058-.043.144-.145.31-.44ZM12 19c-1.016 0-1.892.156-2.477.376a3 3 0 0 0-.287.124l.084.04.203.084c.585.22 1.46.376 2.477.376s1.892-.156 2.477-.376l.203-.084q.045-.02.084-.04a3 3 0 0 0-.287-.124C13.892 19.156 13.017 19 12 19m3-6.44c-.836.284-1.888.44-3 .44-.988 0-1.93-.123-2.713-.35L9 12.56v4.879c.836-.283 1.888-.44 3-.44.988 0 1.93.124 2.713.35l.287.09zm0-3c-.836.284-1.888.44-3 .44s-2.164-.156-3-.44v.794c.086.07.252.169.523.27.585.22 1.46.376 2.477.376s1.892-.156 2.477-.376c.271-.101.437-.2.523-.27zm-3.999-2.508c-.589.064-1.096.18-1.478.324a3 3 0 0 0-.287.124l.084.04.203.084c.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.203-.084q.045-.02.084-.04a3 3 0 0 0-.287-.124A6.2 6.2 0 0 0 13 7.052Z"/>
</G>
</Svg>);
});
Icon.displayName = 'FirecrackerLine';
/**
* MingCute Icon: Firecracker Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FirecrackerLine = Icon;