@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 670 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M9 20.9855C4.53831 20.7267 1 17.0266 1 12.5C1 7.80558 4.80558 4 9.5 4C12.5433 4 15.2131 5.59939 16.7146 8.00348C20.2051 8.11671 23 10.982 23 14.5C23 17.9216 20.3562 20.7257 17 20.9811V21H9V20.9855Z"/>
</Svg>);
};
Icon.displayName = 'CloudyFill';
/**
* Remix Icon: Cloudy Fill
* @see {@link https://remixicon.com/icon/cloudy-fill Remix Icon Docs}
*/
export const CloudyFill = memo(Icon);