@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
73 lines (71 loc) • 3.54 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function SatelliteIcon({
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("g", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
fill: "#d0cfce",
d: "M24.281 24.405c3.633-3.633 3.934-9.413.87-13.4a1.01 1.01 0 00-1.511-.1L11 23.544a1.01 1.01 0 00.074 1.49 9.788 9.788 0 0013.207-.63z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#3f3f3f",
d: "M15.728 67.728L4.414 56.414a1 1 0 010-1.414l15.1-15.1a1 1 0 011.415 0l11.314 11.313a1 1 0 010 1.414l-15.1 15.1a1 1 0 01-1.415 0zM51.213 32.243L39.9 20.929a1 1 0 010-1.414L55 4.415a1 1 0 011.415 0l11.314 11.313a1 1 0 010 1.414l-15.1 15.1a1 1 0 01-1.415 0z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#d0cfce",
d: "M51.92 39.192L39.192 51.92a1 1 0 01-1.414 0L23.636 37.778a1 1 0 010-1.414l12.728-12.728a1 1 0 011.414 0L51.92 37.778a1 1 0 010 1.414z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#9b9b9a",
d: "M36.364 23.636L23.636 36.364a1 1 0 01-1.414 0l-4.243-4.243a1 1 0 010-1.414L30.707 17.98a1 1 0 011.414 0l4.243 4.243a1 1 0 010 1.414zM53.334 44.85l-8.485 8.485a1 1 0 01-1.414 0l-2.121-2.122a1 1 0 010-1.414l8.485-8.485a1 1 0 011.414 0l2.121 2.121a1 1 0 010 1.414z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 12.322,
cy: 12.322,
r: 2,
fill: "#3f3f3f",
transform: "rotate(-45.001 12.322 12.323)"
})), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M45.5 26.5l-2.43 2.43M28.93 43.07l-2.41 2.42L26 46M12 14v8M23 12h-9"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M24.281 24.405c3.633-3.633 3.934-9.413.87-13.4a1.01 1.01 0 00-1.511-.1L11 23.544a1.01 1.01 0 00.074 1.49 9.788 9.788 0 0013.207-.63zM15.728 67.728L4.414 56.414a1 1 0 010-1.414l15.1-15.1a1 1 0 011.415 0l11.314 11.313a1 1 0 010 1.414l-15.1 15.1a1 1 0 01-1.415 0zM51.213 32.243L39.9 20.929a1 1 0 010-1.414L55 4.415a1 1 0 011.415 0l11.314 11.313a1 1 0 010 1.414l-15.1 15.1a1 1 0 01-1.415 0zM51.92 39.192L39.192 51.92a1 1 0 01-1.414 0L23.636 37.778a1 1 0 010-1.414l12.728-12.728a1 1 0 011.414 0L51.92 37.778a1 1 0 010 1.414z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M36.364 23.636L23.636 36.364a1 1 0 01-1.414 0l-4.243-4.243a1 1 0 010-1.414L30.707 17.98a1 1 0 011.414 0l4.243 4.243a1 1 0 010 1.414zM53.334 44.85l-8.485 8.485a1 1 0 01-1.414 0l-2.121-2.122a1 1 0 010-1.414l8.485-8.485a1 1 0 011.414 0l2.121 2.121a1 1 0 010 1.414z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 12.322,
cy: 12.322,
r: 2,
strokeLinecap: "round",
strokeLinejoin: "round",
transform: "rotate(-45.001 12.322 12.323)"
})));
}
const ForwardRef = React.forwardRef(SatelliteIcon);
module.exports = ForwardRef;