@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 537 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const DrizzleFill = /* @__PURE__ */ memo(function DrizzleFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M11 18v3H9v-3a8 8 0 1 1 7.458-10.901A5.5 5.5 0 1 1 17.5 18zm2 2h2v3h-2z"/>
</Svg>);
});
/**
* Remix Icon: Drizzle Fill
* @see {@link https://remixicon.com/icon/drizzle-fill Remix Icon Docs}
*/
export { DrizzleFill };