@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 694 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="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.1l7.07 7.072 7.072-7.071z"/>
</Svg>);
});
Icon.displayName = 'PaintLine';
/**
* Remix Icon: Paint Line
* @see {@link https://remixicon.com/icon/paint-line Remix Icon Docs}
*/
export const PaintLine = Icon;