@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 811 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="M16 17.472A5.98 5.98 0 0 0 20 19h2v2h-2a7.96 7.96 0 0 1-4-1.07A7.96 7.96 0 0 1 12 21a7.96 7.96 0 0 1-4-1.07A7.96 7.96 0 0 1 4 21H2v-2h2c1.537 0 2.94-.578 4-1.528A5.98 5.98 0 0 0 12 19c1.537 0 2.94-.578 4-1.528m-3.427-15.94.1.08L23 11h-3v6a5 5 0 0 1-4-2 4.99 4.99 0 0 1-4 2 5 5 0 0 1-4-2 4.99 4.99 0 0 1-4 2l-.001-6H1l10.327-9.388a1 1 0 0 1 1.14-.145z"/>
</Svg>);
});
Icon.displayName = 'FloodFill';
/**
* Remix Icon: Flood Fill
* @see {@link https://remixicon.com/icon/flood-fill Remix Icon Docs}
*/
export const FloodFill = Icon;