UNPKG

@astraicons/react

Version:

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

33 lines 994 B
const React = require("react"); const { forwardRef } = require("react"); const ReferralIcon = ({ 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("path", { d: "M18.5 18c0-1.933-1.067-3-3-3h-7c-1.933 0-3 1.567-3 3.5" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 10, r: 3 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 4.497h2.994M16.496 5.994V3" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M19.278 6.706a9 9 0 1 1-6.151-3.635" })); const ForwardRef = forwardRef(ReferralIcon); module.exports = ForwardRef;