UNPKG

@astraicons/react

Version:

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

28 lines 912 B
import * as React from "react"; import { forwardRef } from "react"; const Profile3Icon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 7, r: 3, opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M20 20c0-.92-.207-1.83-.609-2.679a7 7 0 0 0-1.734-2.27 8.2 8.2 0 0 0-2.595-1.518A9 9 0 0 0 12 13c-1.05 0-2.09.181-3.061.533a8.2 8.2 0 0 0-2.596 1.517 7 7 0 0 0-1.734 2.271A6.25 6.25 0 0 0 4 20" })); const ForwardRef = forwardRef(Profile3Icon); export default ForwardRef;