@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.15 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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="m18.165 2.765.255.032c.674.093 1.566.218 2.071.724.414.413.573 1.085.668 1.685l.056.386c.126.91.159 2.102-.056 3.426-.424 2.613-1.815 5.731-5.308 8.145-.019.188-.02.378-.016.568l.01.284c.016.437.032.874-.09 1.298-.19.66-.867 1.095-1.5 1.407l-.31.147-.4.176c-.748.318-1.758.644-2.391.01-.38-.379-.536-.935-.663-1.488l-.047-.207a8 8 0 0 0-.2-.774q-.075-.22-.162-.445a3 3 0 0 1-.203.225c-.345.345-.86.586-1.284.755-.463.183-.987.343-1.472.475l-.249.066-.477.119-.432.1-.517.11-.323.063a1.01 1.01 0 0 1-1.177-1.177l.086-.431.154-.698.124-.51.094-.36c.132-.484.292-1.008.476-1.47.168-.425.409-.94.754-1.285l.08-.077-.064-.026a8 8 0 0 0-.519-.177l-.277-.085c-.694-.21-1.436-.436-1.897-.898-.56-.559-.371-1.41-.101-2.118l.11-.274.177-.4.147-.31c.312-.632.747-1.309 1.407-1.499.35-.1.714-.106 1.08-.096l.22.007c.286.01.571.021.85-.006 2.414-3.494 5.532-4.885 8.145-5.309a11.8 11.8 0 0 1 3.171-.088M8.353 15.44a1 1 0 0 0-1.1-.06l-.11.074-.093.083-.125.158c-.26.376-.408.896-.523 1.382l-.108.468-.051.213.191-.046.418-.096c.578-.135 1.219-.31 1.613-.665a1 1 0 0 0 .088-1.314l-.082-.094-.024-.023zm7.183-6.974a2 2 0 1 0-2.829 2.828 2 2 0 0 0 2.829-2.828"/>
</G>
</Svg>);
});
Icon.displayName = 'RocketFill';
/**
* MingCute Icon: Rocket Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const RocketFill = Icon;