@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.27 kB
JavaScript
import * as React from "react";
function ProfileCircleIcon({
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("g", {
clipPath: "url(#a)"
}, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12 6.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5M8.25 9a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0m10 10.807A9.96 9.96 0 0 1 12 22a9.96 9.96 0 0 1-6.25-2.193V17.5a2.75 2.75 0 0 1 2.75-2.75h7a2.75 2.75 0 0 1 2.75 2.75zm1.5-1.487v-.82a4.25 4.25 0 0 0-4.25-4.25h-7a4.25 4.25 0 0 0-4.25 4.25v.82A9.96 9.96 0 0 1 2 12C2 6.477 6.477 2 12 2s10 4.477 10 10a9.96 9.96 0 0 1-2.25 6.32",
clipRule: "evenodd"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
}))));
}
const ForwardRef = React.forwardRef(ProfileCircleIcon);
export default ForwardRef;