@astraicons/react
Version: 
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
32 lines • 904 B
JavaScript
const React = require("react");
function GlobalIcon({
  title,
  titleId,
  ...props
}, svgRef) {
  return /*#__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: svgRef,
    "aria-labelledby": titleId
  }, props), title ? /*#__PURE__*/React.createElement("title", {
    id: titleId
  }, title) : null, /*#__PURE__*/React.createElement("path", {
    strokeLinejoin: "round",
    d: "M9 2C7.667 8.489 7.667 15.511 9 22M15 2c1.333 6.489 1.333 13.511 0 20"
  }), /*#__PURE__*/React.createElement("path", {
    d: "M2 12h20M3 7h18M3 17h18"
  }), /*#__PURE__*/React.createElement("rect", {
    width: 20,
    height: 20,
    x: 2,
    y: 2,
    rx: 10
  }));
}
const ForwardRef = React.forwardRef(GlobalIcon);
module.exports = ForwardRef;