@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 695 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const SeedlingLine = /* @__PURE__ */ memo(function SeedlingLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M5.998 3a7 7 0 0 1 6.913 5.895A6.48 6.48 0 0 1 17.498 7h4.5v2.5a6.5 6.5 0 0 1-6.5 6.5h-2.5v5h-2v-8h-2a7 7 0 0 1-7-7V3zm14 6h-2.5a4.5 4.5 0 0 0-4.5 4.5v.5h2.5a4.5 4.5 0 0 0 4.5-4.5zm-14-4h-2v1a5 5 0 0 0 5 5h2v-1a5 5 0 0 0-5-5"/>
</Svg>);
});
/**
* Remix Icon: Seedling Line
* @see {@link https://remixicon.com/icon/seedling-line Remix Icon Docs}
*/
export { SeedlingLine };