@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 = 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="M17.656 7.77a.847.847 0 1 1 .936 1.402l-.1.045-4.198 1.572c-.093.035-.165-.067-.124-.14l.025-.03 3.461-2.85ZM17 3.34a.847.847 0 0 1 .23 1.272l-2.849 3.46c-.071.088-.21.008-.17-.098l1.572-4.198A.847.847 0 0 1 17 3.34m4.014 7.825a.847.847 0 1 1 0 1.67l-4.422-.736c-.112-.019-.112-.179 0-.197zm-6.804 4.861c-.034-.092.068-.165.142-.124l.03.026 2.848 3.46a.847.847 0 1 1-1.402.937l-.045-.101zm.084-2.815 4.198 1.572a.847.847 0 1 1-.836 1.447l-3.46-2.849c-.088-.071-.008-.21.098-.17m-4.505 2.815-1.572 4.198a.847.847 0 1 1-1.448-.836l2.85-3.46c.071-.088.21-.008.17.098m.016-2.645-3.461 2.85a.847.847 0 1 1-.836-1.448l4.198-1.572c.106-.04.186.099.099.17M2 12.001c0 .523.47.92.986.835l4.422-.737c.112-.019.112-.179 0-.197l-4.422-.737A.847.847 0 0 0 2 12ZM5.072 8a.847.847 0 0 1 1.182-.295l.09.065 3.46 2.849c.077.062.025.176-.06.177l-.038-.006-4.198-1.573A.847.847 0 0 1 5.072 8m3.145-4.224 1.572 4.198c.04.106-.099.186-.17.099l-2.85-3.461a.847.847 0 1 1 1.448-.836m2.948 1.21a.847.847 0 1 1 1.67 0L12.1 9.408c-.019.112-.179.112-.197 0l-.737-4.422Zm1.67 14.028a.847.847 0 1 1-1.67 0l.737-4.422c.018-.112.178-.112.197 0z"/>
</G>
</Svg>);
});
Icon.displayName = 'FireworkLine';
/**
* MingCute Icon: Firework Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FireworkLine = Icon;