UNPKG

@astraicons/react

Version:

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

22 lines 1 kB
import * as React from "react"; import { forwardRef } from "react"; const EditProfileIcon = ({ 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: "M11.75 2a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5M7.75 11C5.196 11 3 12.898 3 15.386v1.364c0 3.241 2.867 5.75 6.25 5.75h5c3.383 0 6.25-2.509 6.25-5.75h-1.932a4 4 0 0 1-4-4V11z" }), /*#__PURE__*/React.createElement("path", { d: "M19.689 9.75c.176 0 .346.07.471.195l.639.639c.26.26.26.683 0 .943l-2.027 2.028a.67.67 0 0 1-.472.195h-.973a.333.333 0 0 1-.333-.333v-.973c0-.177.07-.346.195-.471l2.028-2.028a.67.67 0 0 1 .472-.195" })); const ForwardRef = forwardRef(EditProfileIcon); export default ForwardRef;