@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 558 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="M15 18H9v3H7v-3.252a8 8 0 1 1 9.458-10.65A5.5 5.5 0 1 1 17.5 18H17v3.001h-2zm-4 2h2v3h-2z"/>
</Svg>);
});
Icon.displayName = 'ShowersFill';
/**
* Remix Icon: Showers Fill
* @see {@link https://remixicon.com/icon/showers-fill Remix Icon Docs}
*/
export const ShowersFill = Icon;