UNPKG

@astraicons/react

Version:

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

22 lines 964 B
const React = require("react"); const { forwardRef } = require("react"); const PlusProfileIcon = ({ 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.176 1.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5M8.176 10.25c-2.555 0-4.75 1.898-4.75 4.387V16c0 3.241 2.867 5.75 6.25 5.75h5c3.383 0 6.25-2.509 6.25-5.75h-1.932a4 4 0 0 1-4-4v-1.75z" }), /*#__PURE__*/React.createElement("path", { d: "M19.502 9.75a.75.75 0 1 0-1.5-.001v1.25H16.75a.75.75 0 1 0-.002 1.5H18v1.25a.75.75 0 1 0 1.5.001V12.5l1.25.002a.75.75 0 1 0 .002-1.5L19.5 11z" })); const ForwardRef = forwardRef(PlusProfileIcon); module.exports = ForwardRef;