UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 555 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const ShowersFill = /* @__PURE__ */ memo(function ShowersFill(_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>); }); /** * Remix Icon: Showers Fill * @see {@link https://remixicon.com/icon/showers-fill Remix Icon Docs} */ export { ShowersFill };