@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 640 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const PencilLine = /* @__PURE__ */ memo(function PencilLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m15.728 9.576-1.414-1.414L5 17.476v1.414h1.414zm1.414-1.414 1.414-1.414-1.414-1.414-1.414 1.414zm-9.9 12.728H3v-4.243L16.435 3.212a1 1 0 0 1 1.414 0l2.829 2.829a1 1 0 0 1 0 1.414z"/>
</Svg>);
});
/**
* Remix Icon: Pencil Line
* @see {@link https://remixicon.com/icon/pencil-line Remix Icon Docs}
*/
export { PencilLine };