@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
85 lines (83 loc) • 4.18 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function LegoBlueIcon({
title,
titleId,
size,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 800 800",
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("path", {
fill: "#002ec4",
d: "M5.24 311.705V517.52l230.33 93.106V404.811z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2da6ff",
d: "M805.24 430.843V239.407l-570.896 166.63v205.815z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2da6ff",
d: "M5.24 314.147l567.22-172.75 231.555 98.01L235.569 408.48z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#002ec4",
d: "M191.463 326.395v41.655c22.053 19.601 98 18.376 116.376-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2da6ff",
d: "M191.463 323.34c0-7.775 26.05-14.087 58.193-14.087 32.133 0 58.183 6.312 58.183 14.087 0 7.784-26.05 14.086-58.183 14.086-32.143 0-58.193-6.302-58.193-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#002ec4",
d: "M336.634 284.127v41.655c22.044 19.61 97.991 18.385 116.376-2.442v-42.881z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2da6ff",
d: "M336.634 281.072c0-7.775 26.05-14.087 58.184-14.087 32.142 0 58.192 6.312 58.192 14.087 0 7.784-26.05 14.095-58.192 14.095-32.134 0-58.184-6.311-58.184-14.095z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#002ec4",
d: "M478.128 241.859v41.664c22.053 19.602 98 18.376 116.376-2.451V238.19z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2da6ff",
d: "M478.128 238.813c0-7.784 26.05-14.087 58.184-14.087 32.142 0 58.192 6.303 58.192 14.087 0 7.775-26.05 14.086-58.192 14.086-32.134 0-58.184-6.311-58.184-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#002ec4",
d: "M614.728 200.825v41.655c22.044 19.602 97.991 18.377 116.377-2.45v-42.882z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2da6ff",
d: "M614.728 197.77c0-7.784 26.05-14.086 58.184-14.086 32.142 0 58.193 6.302 58.193 14.086 0 7.784-26.05 14.087-58.193 14.087-32.133 0-58.184-6.303-58.184-14.087z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#002ec4",
d: "M501.407 151.212v41.656c22.053 19.602 98 18.385 116.385-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2da6ff",
d: "M501.407 148.157c0-7.774 26.06-14.086 58.193-14.086 32.142 0 58.192 6.312 58.192 14.086 0 7.784-26.05 14.087-58.192 14.087-32.134 0-58.193-6.303-58.193-14.087z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#002ec4",
d: "M358.705 192.264v41.655c22.045 19.602 97.992 18.376 116.377-2.451v-42.881z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2da6ff",
d: "M358.705 189.209c0-7.775 26.051-14.086 58.184-14.086 32.142 0 58.193 6.311 58.193 14.086 0 7.784-26.05 14.086-58.193 14.086-32.133 0-58.184-6.302-58.184-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#002ec4",
d: "M215.995 233.315v41.655c22.044 19.602 97.991 18.377 116.377-2.45v-42.882z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2da6ff",
d: "M215.995 230.26c0-7.784 26.05-14.086 58.184-14.086 32.142 0 58.193 6.302 58.193 14.086 0 7.784-26.051 14.087-58.193 14.087-32.133 0-58.184-6.303-58.184-14.087z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#002ec4",
d: "M73.285 274.358v41.664c22.053 19.602 97.99 18.376 116.376-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2da6ff",
d: "M73.285 271.312c0-7.784 26.05-14.087 58.183-14.087 32.143 0 58.193 6.303 58.193 14.087 0 7.775-26.05 14.086-58.193 14.086-32.133 0-58.183-6.311-58.183-14.086z"
}));
}
const ForwardRef = React.forwardRef(LegoBlueIcon);
module.exports = ForwardRef;