@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.18 kB
JavaScript
import * as React from "react";
function EditProfileIcon({
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", {
fillRule: "evenodd",
d: "M8.25 5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0M3.25 15c0-2.623 1.127-4.75 3.75-4.75h4.73c1.953 0 3.52 1.612 3.52 3.547q0 .263-.043.524a1.677 1.677 0 0 0 1.64 1.953l2.71.022c.66.006 1.193.543 1.193 1.204 0 2.9-2.35 5.25-5.25 5.25h-6a6.25 6.25 0 0 1-6.25-6.25z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M18.693 9.665a1.417 1.417 0 0 1 2.003 0l.64.639c.552.553.552 1.45 0 2.003l-2.029 2.028a1.42 1.42 0 0 1-1.001.415h-.973a1.083 1.083 0 0 1-1.083-1.083v-.973c0-.375.15-.736.415-1.001z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(EditProfileIcon);
export default ForwardRef;