UNPKG

@astraicons/react

Version:

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

23 lines 789 B
import * as React from "react"; function ProfileIcon({ 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 0m-5 10A4.75 4.75 0 0 1 8 10.25h8A4.75 4.75 0 0 1 20.75 15v1.5a6.25 6.25 0 0 1-6.25 6.25h-5a6.25 6.25 0 0 1-6.25-6.25z", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(ProfileIcon); export default ForwardRef;