@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.05 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="M4.293 4.793C6.046 3.04 8.438 2.55 10.316 3.176c.946.316 1.787.926 2.302 1.828q.141.245.243.51c1.385-.737 2.916-.834 4.248-.322 2.13.82 3.456 3.082 2.872 6.004a1 1 0 0 1-1.232.772l-.12-.04-4.724-1.889c.635 2.269.7 4.579.593 6.395a25 25 0 0 1-.193 1.962l-.078.524-.038.233c-.062.365-.13.73-.219 1.09a1 1 0 0 1-.857.75L13 21H9.5a1 1 0 0 1-.85-.474c-.26-.419-.112-.847.07-1.26l.165-.365q.027-.06.05-.12l.138-.374a16 16 0 0 0 .516-1.76c.322-1.38.526-3.08.283-4.834l-.059-.377-4.533 2.912a1 1 0 0 1-1.53-.703c-.376-2.693.716-5.091 2.57-6.352l.129-.086.13-.08-1.915-.685a1 1 0 0 1-.371-1.649m7.552 5.339-.232.149c.624 2.53.351 4.988-.077 6.821-.17.734-.37 1.378-.552 1.898h1.201l.07-.407.07-.479q.018-.127.035-.264l.065-.573q.046-.453.077-.96c.107-1.832.017-4.084-.657-6.185M10.48 8.63c-1.133-.45-2.207-.248-3.037.316-.762.519-1.376 1.386-1.635 2.48l-.05.238zm2.775-1.004 4.856 1.942c-.088-1.341-.845-2.172-1.72-2.51-.885-.34-2.065-.244-3.136.568M7.181 5.217l3.918 1.4a1.9 1.9 0 0 0-.217-.62c-.235-.412-.644-.739-1.198-.923-.71-.237-1.617-.22-2.503.143"/>
</G>
</Svg>);
});
Icon.displayName = 'Tree4Line';
/**
* MingCute Icon: Tree 4 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Tree4Line = Icon;