@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 3.07 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="M12 2c.62.017 1.268.543 1.693.947A4.13 4.13 0 0 1 14.89 5.02a4.13 4.13 0 0 1 2.314-.619c.586.015 1.416.102 1.866.528.426.45.512 1.28.527 1.866a4.13 4.13 0 0 1-.618 2.314c.927.214 1.61.71 2.073 1.198.404.425.93 1.073.947 1.693-.017.62-.543 1.268-.947 1.693a4.13 4.13 0 0 1-2.073 1.198 4.14 4.14 0 0 1 .619 2.314c-.015.586-.102 1.416-.528 1.866-.45.426-1.28.512-1.866.527a4.13 4.13 0 0 1-2.314-.618 4.13 4.13 0 0 1-1.198 2.073c-.425.404-1.074.93-1.693.947-.62-.017-1.268-.543-1.693-.947A4.13 4.13 0 0 1 9.11 18.98a4.13 4.13 0 0 1-2.314.619c-.586-.015-1.416-.102-1.866-.528-.426-.45-.512-1.28-.527-1.866a4.13 4.13 0 0 1 .618-2.314 4.13 4.13 0 0 1-2.073-1.198C2.543 13.268 2.017 12.62 2 12c.017-.62.543-1.268.947-1.693A4.13 4.13 0 0 1 5.02 9.11a4.13 4.13 0 0 1-.619-2.314c.015-.586.102-1.416.528-1.866.45-.426 1.28-.513 1.866-.527a4.13 4.13 0 0 1 2.314.618c.214-.927.71-1.61 1.198-2.073.426-.404 1.073-.93 1.693-.947m.5 13.969c-.328.04-.672.04-1 0-.278.64-.5 1.287-.5 2.031 0 1.002.579 1.567 1 1.86.421-.293 1-.858 1-1.86 0-.744-.222-1.391-.5-2.031m-3.66-1.516c-.649.256-1.264.557-1.79 1.083-.708.708-.699 1.517-.607 2.021.504.091 1.313.101 2.021-.607.526-.526.827-1.141 1.083-1.79a4 4 0 0 1-.707-.707m6.32 0a4 4 0 0 1-.707.707c.256.649.557 1.264 1.083 1.79.708.708 1.517.698 2.021.607.091-.504.101-1.313-.607-2.021-.526-.526-1.141-.827-1.79-1.083M12 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4m-6 1c-1.002 0-1.567.579-1.86 1 .293.421.858 1 1.86 1 .744 0 1.391-.222 2.031-.5a4 4 0 0 1 0-1C7.391 11.222 6.744 11 6 11m12 0c-.744 0-1.391.222-2.031.5.04.328.04.672 0 1 .64.278 1.287.5 2.031.5 1.002 0 1.567-.579 1.86-1-.293-.421-.858-1-1.86-1M8.464 7.05c-.708-.708-1.517-.699-2.021-.607-.092.504-.101 1.313.607 2.021.526.526 1.141.827 1.79 1.083a4 4 0 0 1 .707-.707c-.256-.649-.557-1.264-1.083-1.79m9.093-.607c-.504-.092-1.313-.101-2.021.607-.526.526-.827 1.141-1.083 1.79q.398.31.707.707c.649-.256 1.264-.557 1.79-1.083.708-.708.698-1.517.607-2.021M12 4.14c-.421.292-1 .857-1 1.859 0 .744.222 1.391.5 2.031.328-.04.672-.04 1 0 .278-.64.5-1.287.5-2.031 0-1.002-.579-1.567-1-1.86"/>
</G>
</Svg>);
});
Icon.displayName = 'SunflowerLine';
/**
* MingCute Icon: Sunflower Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const SunflowerLine = Icon;