@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.36 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">
<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="M13.742 16.202c-.227-.606.521-1.072.964-.658l.061.066 2.85 3.46a1.347 1.347 0 1 1-2.248 1.455l-.054-.126zm.642-3.486.085.026 4.198 1.573a1.347 1.347 0 1 1-1.212 2.388l-.117-.087-3.46-2.849c-.5-.41-.085-1.188.506-1.05ZM22.5 12c0 .789-.67 1.399-1.44 1.344l-.129-.015-4.421-.737c-.632-.105-.667-.968-.106-1.158l.106-.026 4.421-.737a1.347 1.347 0 0 1 1.569 1.33Zm-3.14-4.25c.393.68.12 1.541-.568 1.88l-.126.055-4.198 1.573c-.605.227-1.07-.521-.657-.964l.065-.061 3.461-2.85a1.347 1.347 0 0 1 2.023.367m-2.11-4.843c.678.392.873 1.268.453 1.906l-.087.117-2.849 3.46c-.41.5-1.188.085-1.05-.506l.025-.085L15.315 3.6a1.347 1.347 0 0 1 1.935-.694ZM9.233 15.61c.41-.5 1.188-.085 1.05.506l-.025.085L8.685 20.4a1.347 1.347 0 1 1-2.388-1.212l.086-.117zm.955-1.904-.066.061-3.46 2.85a1.347 1.347 0 1 1-1.455-2.248l.126-.054 4.198-1.573c.605-.227 1.07.521.657.964m-7.248-3.05.129.015 4.421.737c.632.106.667.968.106 1.158l-.106.026-4.421.737a1.347 1.347 0 1 1-.13-2.673Zm3.605-3.359.117.087 3.46 2.849c.5.41.085 1.188-.506 1.05l-.085-.025-4.198-1.573a1.347 1.347 0 1 1 1.212-2.388m2.086-3.822.054.126 1.573 4.198c.227.606-.521 1.07-.964.657l-.061-.065-2.85-3.461a1.347 1.347 0 1 1 2.248-1.455M12 3.5c-.832 0-1.466.747-1.329 1.569l.737 4.421c.112.669 1.072.669 1.184 0l.737-4.421A1.347 1.347 0 0 0 12 3.5m.592 11.01c-.112-.669-1.072-.669-1.184 0l-.737 4.421a1.347 1.347 0 1 0 2.658 0z"/>
</G>
</Svg>);
});
Icon.displayName = 'FireworkFill';
/**
* MingCute Icon: Firework Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FireworkFill = Icon;