@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
46 lines (44 loc) • 1.22 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function GlobeIcon({
title,
titleId,
size,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 72 72",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("circle", {
cx: 36,
cy: 36,
r: 28,
fill: "#92D3F5"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("circle", {
cx: 36,
cy: 36,
r: 28
}), /*#__PURE__*/React.createElement("path", {
d: "M36 8v56c-8.56 0-15.5-12.536-15.5-28S27.44 8 36 8c8.56 0 15.5 12.536 15.5 28S44.56 64 36 64M64 36H8M60 22H12M60 50H12"
})));
}
const ForwardRef = React.forwardRef(GlobeIcon);
module.exports = ForwardRef;