@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.32 kB
JavaScript
import * as React from "react";
function EditIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M3.395 17.422a.71.71 0 0 0-.697-.723.71.71 0 0 0-.698.723v.642C2 20.238 3.7 22 5.798 22h12.404C20.299 22 22 20.238 22 18.064v-.642a.71.71 0 0 0-.698-.723.71.71 0 0 0-.697.723v.642c0 1.375-1.076 2.49-2.404 2.49H5.798c-1.327 0-2.403-1.115-2.403-2.49z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M10.512 12.747a.74.74 0 0 1-.14-1.012l.28-.386a.68.68 0 0 1 .976-.145.74.74 0 0 1 .14 1.012l-.28.386a.68.68 0 0 1-.976.145m-.406-5.498-2.38 3.528a2.2 2.2 0 0 0-.338 1.646l.6 3.144c.113.595.686.985 1.278.871l3.129-.603a2.18 2.18 0 0 0 1.396-.924l2.423-3.59a.7.7 0 0 1-.148-.075zm.8-1.185 5.918 3.968a.7.7 0 0 1 .16.149l2.081-3.084a2.2 2.2 0 0 0-.582-3.048l-2.45-1.67a2.176 2.176 0 0 0-3.034.584z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(EditIcon);
export default ForwardRef;