UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 569 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const QuillPenFill = /* @__PURE__ */ memo(function QuillPenFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M21 1.997c-15 0-17 14-18 20h1.998q.999-5 5.002-5.5c4-.5 7-4 8-7l-1.5-1 1-1c1-1 2.004-2.5 3.5-5.5"/> </Svg>); }); /** * Remix Icon: Quill Pen Fill * @see {@link https://remixicon.com/icon/quill-pen-fill Remix Icon Docs} */ export { QuillPenFill };