@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 894 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const GlobalIcon = ({
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: "M9.299 3.893a36.95 36.95 0 0 0 .003 16.22m5.404-16.222a36.95 36.95 0 0 1 .003 16.222M2.992 12.005 21.016 12M3.892 7.498l16.222-.003M3.894 16.51l16.222-.003",
opacity: 0.4
}), /*#__PURE__*/React.createElement("rect", {
width: 18.024,
height: 18.024,
x: 2.99,
y: 2.993,
rx: 9.012
}));
const ForwardRef = forwardRef(GlobalIcon);
module.exports = ForwardRef;