@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
32 lines • 1.22 kB
JavaScript
const React = require("react");
function EditIcon({
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",
d: "M22 18v.667A3.333 3.333 0 0 1 18.667 22H5.333A3.333 3.333 0 0 1 2 18.667v0V18"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M7.405 11.106 13.075 3c.349-.5.889-.845 1.5-.958a2.4 2.4 0 0 1 1.76.352l2.635 1.732c1.073.706 1.353 2.123.625 3.164l-5.67 8.107c-.349.5-.889.844-1.5.958l-3.364.625c-.637.119-1.252-.286-1.374-.903l-.645-3.263a2.22 2.22 0 0 1 .363-1.707",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m10.85 12.55.3-.4M11.109 6.63l5.572 3.467"
}));
}
const ForwardRef = React.forwardRef(EditIcon);
module.exports = ForwardRef;