@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 762 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Brush2Fill = /* @__PURE__ */ memo(function Brush2Fill(_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.536 15.947 2.121-2.122-3.182-3.182 3.536-3.535-2.122-2.122-3.535 3.536-3.182-3.182L8.05 7.46zM13.354 5.693l2.828-2.828a1 1 0 0 1 1.414 0l3.536 3.536a1 1 0 0 1 0 1.414l-2.829 2.828 2.475 2.475a1 1 0 0 1 0 1.414L13 22.311a1 1 0 0 1-1.414 0l-9.9-9.9a1 1 0 0 1 0-1.414l7.779-7.778a1 1 0 0 1 1.414 0z"/>
</Svg>);
});
/**
* Remix Icon: Brush 2 Fill
* @see {@link https://remixicon.com/icon/brush-2-fill Remix Icon Docs}
*/
export { Brush2Fill };