@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.25 kB
JavaScript
import * as React from "react";
function PenTool01Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M18 13l-1.3-6.498c-.072-.363-.108-.545-.197-.692a1 1 0 00-.312-.325c-.144-.094-.324-.138-.684-.225L2 2m0 0l3.26 13.507c.087.36.13.54.225.684a1 1 0 00.325.312c.147.088.329.125.692.197L13 18M2 2l7.586 7.586m6.545 11.283l4.738-4.738c.396-.396.594-.594.668-.822a1 1 0 000-.618c-.074-.228-.272-.426-.668-.822l-.738-.738c-.396-.396-.594-.594-.822-.668a1 1 0 00-.618 0c-.228.074-.426.272-.822.668L13.13 17.87c-.396.396-.594.594-.668.822a1 1 0 000 .618c.074.228.272.426.668.822l.738.738c.396.396.594.594.822.668a1 1 0 00.618 0c.228-.074.426-.272.822-.668zM13 11a2 2 0 11-4 0 2 2 0 014 0z"
}));
}
const ForwardRef = React.forwardRef(PenTool01Icon);
export default ForwardRef;