@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.49 kB
JavaScript
import * as React from "react";
function GlobalIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12 2c.787 0 1.553.09 2.288.263q.3 1.477.506 2.987H9.206q.206-1.51.506-2.987C10.447 2.09 11.212 2 12 2M8.75 12.25c-.008-1.84.083-3.68.274-5.5h5.952c.191 1.82.282 3.66.273 5.5zm-.67-9.453q-.224 1.218-.388 2.453h-3.07A10 10 0 0 1 8.08 2.797M7.517 6.75H3.487a9.95 9.95 0 0 0-1.484 5.5h5.248c-.01-1.84.08-3.68.265-5.5m12.997 0h-4.03c.187 1.82.275 3.66.266 5.5h5.248Q22 12.126 22 12a9.95 9.95 0 0 0-1.487-5.25m-4.205-1.5h3.07a10 10 0 0 0-3.459-2.453q.225 1.218.389 2.453m-14.155 8.5h5.126q.06 1.758.237 3.5H3.487a9.9 9.9 0 0 1-1.334-3.5m2.469 5a10 10 0 0 0 3.459 2.453 49 49 0 0 1-.389-2.453zm4.584 0a47 47 0 0 0 .506 2.987c.735.172 1.5.263 2.288.263s1.553-.091 2.288-.263q.3-1.478.506-2.987zm7.102 0q-.165 1.235-.389 2.453a10 10 0 0 0 3.46-2.453zm4.205-1.5h-4.03q.179-1.742.238-3.5h5.126a9.9 9.9 0 0 1-1.334 3.5m-5.537 0H9.024a50 50 0 0 1-.244-3.5h6.44a50 50 0 0 1-.244 3.5",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(GlobalIcon);
export default ForwardRef;