@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 628 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M21.998 7v2.5a6.5 6.5 0 0 1-6.5 6.5h-2.5v5h-2v-7l.019-1a6.5 6.5 0 0 1 6.481-6zm-16-4a7 7 0 0 1 6.643 4.786A7.48 7.48 0 0 0 10.014 13H8.998a7 7 0 0 1-7-7V3z"/>
</Svg>);
});
Icon.displayName = 'SeedlingFill';
/**
* Remix Icon: Seedling Fill
* @see {@link https://remixicon.com/icon/seedling-fill Remix Icon Docs}
*/
export const SeedlingFill = Icon;