@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 784 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="M8.5 5.5c1.412.47 2.048 2.159 2.327 4.023l-4.523 2.611 1 1.732 3.71-2.141C11.06 13.079 11 14.309 11 15c0 3-1 6-5 6s-4 0-4-4C2 9.5 5.5 4.5 8.5 5.5M22.001 17v.436c-.005 3.564-.15 3.564-4 3.564-4 0-5-3-5-6 0-.691-.06-1.92-.014-3.274l3.71 2.14 1-1.732-4.523-2.61c.279-1.865.915-3.553 2.327-4.024 3-1 6.5 4 6.5 11.5M13 2v9h-2V2z"/>
</Svg>);
});
Icon.displayName = 'LungsFill';
/**
* Remix Icon: Lungs Fill
* @see {@link https://remixicon.com/icon/lungs-fill Remix Icon Docs}
*/
export const LungsFill = Icon;