@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.19 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="M14.714 5.343c-.682-1.05-1.547-1.873-2.254-2.23A1 1 0 0 0 12 3a1 1 0 0 0-.46.112c-.707.358-1.571 1.18-2.254 2.231a8.2 8.2 0 0 0-1.033 2.289c-.722-.448-1.507-.77-2.437-1.08a1 1 0 0 0-1.296.752c-.257 1.285-.413 2.558-.192 3.807a6.1 6.1 0 0 0 .833 2.184 7.5 7.5 0 0 0-1.716.873 1 1 0 0 0-.373 1.204c.29.723 1.02 1.503 2.368 2.154 1.216.587 2.989 1.098 5.56 1.382V21a1 1 0 1 0 2 0v-2.092c2.572-.284 4.344-.796 5.56-1.382 1.347-.65 2.079-1.43 2.369-2.154a1 1 0 0 0-.374-1.204 7.5 7.5 0 0 0-1.716-.873c.431-.699.7-1.423.833-2.184.22-1.25.066-2.522-.191-3.807a1 1 0 0 0-1.297-.752c-.93.31-1.714.632-2.437 1.08a8.2 8.2 0 0 0-1.033-2.289M13 16.895c2.294-.27 3.766-.724 4.69-1.17a5 5 0 0 0 .756-.44C17.763 15 17.301 15 17.03 15H17a1 1 0 0 1-.707-1.707c.869-.869 1.261-1.687 1.41-2.53.102-.576.095-1.197.01-1.9-.804.347-1.403.741-2.006 1.344A1 1 0 0 1 14 9.5c0-1.161-.416-2.225-.964-3.068A5.9 5.9 0 0 0 12 5.215a5.9 5.9 0 0 0-1.036 1.217C10.416 7.275 10 8.34 10 9.5a1 1 0 0 1-1.707.707c-.603-.603-1.201-.997-2.005-1.345-.086.704-.092 1.325.01 1.902.148.842.54 1.66 1.41 2.53A1 1 0 0 1 7 15h-.03c-.27 0-.733-.001-1.416.285.191.137.438.286.756.44.924.446 2.396.9 4.69 1.17V14a1 1 0 1 1 2 0z"/>
</G>
</Svg>);
});
Icon.displayName = 'MapleLeafLine';
/**
* MingCute Icon: Maple Leaf Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const MapleLeafLine = Icon;