@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
32 lines • 981 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", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M9.302 3.905a36.9 36.9 0 0 0 .004 16.197M14.701 3.904a36.9 36.9 0 0 1 .004 16.197"
}), /*#__PURE__*/React.createElement("path", {
d: "M3.004 12.005 21 12M3.904 7.505l16.197-.003M3.904 16.504l16.197-.004"
}), /*#__PURE__*/React.createElement("rect", {
width: 17.997,
height: 17.997,
x: 3.002,
y: 3.007,
rx: 8.998
}));
const ForwardRef = forwardRef(GlobalIcon);
module.exports = ForwardRef;