@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 672 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const PaintFill = /* @__PURE__ */ memo(function PaintFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m19.228 18.732 1.767-1.767 1.768 1.767a2.5 2.5 0 1 1-3.535 0M8.878 1.08l11.314 11.313a1 1 0 0 1 0 1.415l-8.485 8.485a1 1 0 0 1-1.414 0l-8.485-8.485a1 1 0 0 1 0-1.415l7.778-7.778-2.122-2.121zM11 6.03 3.929 13.1H18.07z"/>
</Svg>);
});
/**
* Remix Icon: Paint Fill
* @see {@link https://remixicon.com/icon/paint-fill Remix Icon Docs}
*/
export { PaintFill };