UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.82 kB
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="m10.255 1.387 1.26.756a8.15 8.15 0 0 1 3.48 4.144c.222-.5.486-.985.731-1.475l.981.981C18.909 7.995 21 11.295 21 14.5c0 4.298-2.65 7.023-6.89 7.494l-1.39.154.304-1.365c.237-1.068.28-1.766.23-2.255-.06-.615-.352-1.098-.716-1.578-.348-.46-.693-.921-.969-1.43-1.135.897-1.575 1.707-1.716 2.374-.18.854.075 1.727.541 2.659l.822 1.644-1.826-.203c-2.576-.286-5.114-2.007-6.114-4.518-1.045-2.627-.306-5.806 3.07-8.732 2.24-1.941 3.426-4.458 3.909-7.357m1.332 3.3c-.762 2.14-2.225 4.09-3.932 5.569-2.911 2.523-3.172 4.844-2.52 6.48.485 1.22 1.532 2.223 2.773 2.792a5 5 0 0 1-.012-2.046c.326-1.546 1.438-2.995 3.574-4.33l1.077-.673.402 1.205c.352 1.056 1.082 1.803 1.653 2.73.628 1.02.748 2.19.62 3.358C17.842 19.117 19 17.13 19 14.5c0-2.222-1.34-4.402-2.67-6.106-.548 1.228-1.703 1.66-2.83 2.224V9c0-1.369-.557-3.038-1.913-4.312Z"/> </G> </Svg>); }); Icon.displayName = 'FireLine'; /** * MingCute Icon: Fire Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const FireLine = Icon;