UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.94 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.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.707 2.293 4 4a1 1 0 0 1 .175 1.178c-.247.463-.633.775-1.01.987l2.835 2.835a1 1 0 0 1 0 1.414c-.478.478-1.082.77-1.634.952l2.634 2.634a1 1 0 0 1-.392 1.656c-.692.229-1.405.389-2.119.532-.542.108-1.175.216-1.88.306l.633 1.897A1 1 0 0 1 15 22H9a1 1 0 0 1-.949-1.316l.633-1.897a27 27 0 0 1-1.88-.306 23 23 0 0 1-1.591-.378l-.53-.154a1 1 0 0 1-.39-1.656l2.634-2.634c-.552-.181-1.156-.474-1.634-.952a1 1 0 0 1 0-1.414l2.835-2.835c-.377-.212-.763-.524-1.01-.987a1 1 0 0 1 .175-1.178l4-4a1 1 0 0 1 1.414 0m.562 16.675a26 26 0 0 1-2.123.018l-.415-.018L10.387 20h3.226zM12 4.414 9.528 6.886l.1.029.187.043.276.046c.383.04.717.29.85.655a1 1 0 0 1-.234 1.048L7.63 11.784c.423.13.905.216 1.372.216a1 1 0 0 1 .705 1.707l-2.76 2.761.514.103C8.639 16.793 10.218 17 12 17a24.7 24.7 0 0 0 4.26-.378l.544-.103.25-.051-2.761-2.76a1 1 0 0 1 .588-1.7l.118-.008a5 5 0 0 0 1.371-.216l-3.077-3.077a1 1 0 0 1 .488-1.683l.323-.05.172-.036q.094-.02.196-.052z"/> </G> </Svg>); }); Icon.displayName = 'TreeLine'; /** * MingCute Icon: Tree Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const TreeLine = Icon;