@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 1.24 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const EditIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "m19.382 4.499-2.634-1.733a3.16 3.16 0 0 0-2.31-.463c-.8.15-1.514.602-1.979 1.266l-1.752 2.507 7.665 5.27 1.838-2.628c.974-1.394.591-3.286-.828-4.22"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "m6.79 11.676 3.057-4.37 7.666 5.27-2.973 4.25a3.1 3.1 0 0 1-1.978 1.265l-3.364.626c-1.021.19-2.041-.456-2.247-1.496l-.645-3.262a2.97 2.97 0 0 1 .484-2.283m3.46 1.424a.75.75 0 1 0 1.2.9l.3-.4a.75.75 0 1 0-1.2-.9z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M3.75 18a.75.75 0 0 0-1.5 0v.5a3.25 3.25 0 0 0 3.25 3.25h13a3.25 3.25 0 0 0 3.25-3.25V18a.75.75 0 0 0-1.5 0v.5a1.75 1.75 0 0 1-1.75 1.75h-13a1.75 1.75 0 0 1-1.75-1.75z"
}));
const ForwardRef = forwardRef(EditIcon);
export default ForwardRef;