@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.07 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const ProfileCircleIcon = ({
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", {
fillRule: "evenodd",
d: "M2.324 12c0-5.343 4.332-9.675 9.675-9.675S21.674 6.657 21.674 12a9.64 9.64 0 0 1-2.7 6.705V16.95a3.825 3.825 0 0 0-3.825-3.825h-6.3a3.825 3.825 0 0 0-3.825 3.825v1.755A9.64 9.64 0 0 1 2.324 12m15.3 4.95v2.923A9.63 9.63 0 0 1 12 21.675a9.63 9.63 0 0 1-5.625-1.802V16.95a2.475 2.475 0 0 1 2.475-2.475h6.3a2.475 2.475 0 0 1 2.475 2.475M9.974 9.3a2.025 2.025 0 1 1 4.05 0 2.025 2.025 0 0 1-4.05 0m2.025-3.375a3.375 3.375 0 1 0 0 6.75 3.375 3.375 0 0 0 0-6.75",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(ProfileCircleIcon);
export default ForwardRef;