@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 754 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Profile2Icon = ({
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: "M12 3.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5M8 12.25c-2.608 0-4.75 2.074-4.75 4.666V19.7c0 .58.47 1.05 1.05 1.05h15.4c.58 0 1.05-.47 1.05-1.05v-2.784c0-2.592-2.142-4.666-4.75-4.666z"
}));
const ForwardRef = forwardRef(Profile2Icon);
export default ForwardRef;