UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

33 lines 1.2 kB
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", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M21 18v.5a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 18.5V18", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M7.405 12.106 13.075 4c.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 13.55.3-.4M11.109 7.63l5.572 3.467", opacity: 0.4 })); const ForwardRef = forwardRef(EditIcon); export default ForwardRef;