@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 764 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="M6.94 14.033a30 30 0 0 0-.606 1.783c.96-.697 2.101-1.14 3.418-1.304 2.513-.314 4.746-1.973 5.876-4.058l-1.456-1.455 1.413-1.415 1-1.002c.43-.429.915-1.224 1.428-2.367-5.593.867-9.018 4.291-11.074 9.818M17 8.997l1 1c-1 3-4 6-8 6.5q-4.003.5-5.002 5.5H3c1-6 3-20 18-20q-1.5 4.496-2.997 5.997z"/>
</Svg>);
});
Icon.displayName = 'QuillPenLine';
/**
* Remix Icon: Quill Pen Line
* @see {@link https://remixicon.com/icon/quill-pen-line Remix Icon Docs}
*/
export const QuillPenLine = Icon;