@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.45 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">
<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.618 5.004q.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.352.733l-4.724-1.89c.635 2.269.7 4.578.593 6.395a25 25 0 0 1-.526 3.8A1.02 1.02 0 0 1 13 21h-2.5a1 1 0 0 1-.895-1.446c.454-.91.754-1.92.984-2.906.38-1.629.596-3.7.108-5.78l-5.417 3.48a1 1 0 0 1-1.53-.703c-.376-2.693.716-5.091 2.57-6.352q.128-.087.26-.167l-1.916-.684a1 1 0 0 1-.371-1.649C6.046 3.04 8.438 2.55 10.316 3.176c.946.316 1.787.926 2.302 1.828"/>
</G>
</Svg>);
});
Icon.displayName = 'Tree4Fill';
/**
* MingCute Icon: Tree 4 Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Tree4Fill = Icon;