@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.25 kB
JavaScript
const React = require("react");
function Tool02Icon({
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: "M6 6l4.5 4.5M6 6H3L2 3l1-1 3 1v3zm13.259-3.259l-2.628 2.628c-.396.396-.594.594-.668.822a1 1 0 000 .618c.074.228.272.426.668.822l.238.238c.396.396.594.594.822.668a1 1 0 00.618 0c.228-.074.426-.272.822-.668L21.59 5.41a5.5 5.5 0 01-6.16 7.485c-.485-.096-.729-.144-.876-.13a.836.836 0 00-.373.114c-.13.07-.261.201-.523.463L6.5 20.5a2.121 2.121 0 01-3-3l7.157-7.157c.262-.262.393-.393.463-.524a.836.836 0 00.113-.372c.015-.148-.033-.39-.129-.877a5.5 5.5 0 018.155-5.83zM12 15l5.5 5.5a2.121 2.121 0 003-3l-4.525-4.525a5.475 5.475 0 01-.934-.17c-.39-.107-.816-.03-1.101.255L12 15z"
}));
}
const ForwardRef = React.forwardRef(Tool02Icon);
module.exports = ForwardRef;