@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.17 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const ReferalIcon = ({
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: "M7.633 5.001a8.25 8.25 0 0 1 5.4-1.186.75.75 0 0 0 .187-1.488 9.75 9.75 0 0 0-8.225 16.455c.114.174.267.32.441.428a9.75 9.75 0 0 0 8.018 2.431 9.75 9.75 0 0 0 6.43-15.376.75.75 0 1 0-1.212.882 8.25 8.25 0 0 1 .312 9.245 3.2 3.2 0 0 0-.729-1.146c-.688-.69-1.654-.995-2.755-.995h-7c-1.078 0-1.977.404-2.625 1.094a3.9 3.9 0 0 0-.76 1.2A8.25 8.25 0 0 1 7.632 5"
}), /*#__PURE__*/React.createElement("path", {
d: "M16.496 2.25a.75.75 0 0 1 .75.75v.747h.748a.75.75 0 0 1 0 1.5h-.748v.747a.75.75 0 0 1-1.5 0v-.747H15a.75.75 0 0 1 0-1.5h.746V3a.75.75 0 0 1 .75-.75M8.25 10a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0"
}));
const ForwardRef = forwardRef(ReferalIcon);
export default ForwardRef;