@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
85 lines (83 loc) • 4.17 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function LegoGreenIcon({
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: "#16a085",
d: "M0 325.705V531.52l230.329 93.106V418.811z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2ecc71",
d: "M800 444.843V253.407l-570.897 166.63v205.815z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2ecc71",
d: "M0 328.147l567.22-172.75 231.554 98.01L230.33 422.48z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#16a085",
d: "M186.222 340.395v41.655c22.054 19.601 98 18.376 116.377-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2ecc71",
d: "M186.222 337.34c0-7.775 26.05-14.087 58.193-14.087 32.133 0 58.184 6.312 58.184 14.087 0 7.784-26.05 14.086-58.184 14.086-32.142 0-58.193-6.302-58.193-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#16a085",
d: "M331.393 298.127v41.655c22.045 19.61 97.991 18.385 116.377-2.442v-42.881z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2ecc71",
d: "M331.393 295.072c0-7.775 26.05-14.087 58.184-14.087 32.142 0 58.193 6.312 58.193 14.087 0 7.784-26.05 14.095-58.193 14.095-32.133 0-58.184-6.311-58.184-14.095z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#16a085",
d: "M472.887 255.859v41.664c22.054 19.602 98 18.376 116.377-2.451V252.19z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2ecc71",
d: "M472.887 252.813c0-7.784 26.05-14.087 58.184-14.087 32.142 0 58.193 6.303 58.193 14.087 0 7.775-26.05 14.086-58.193 14.086-32.133 0-58.184-6.311-58.184-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#16a085",
d: "M609.488 214.825v41.655c22.044 19.602 97.99 18.377 116.376-2.45v-42.882z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2ecc71",
d: "M609.488 211.77c0-7.784 26.05-14.086 58.183-14.086 32.143 0 58.193 6.302 58.193 14.086 0 7.784-26.05 14.087-58.193 14.087-32.133 0-58.183-6.303-58.183-14.087z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#16a085",
d: "M496.166 165.212v41.656c22.054 19.602 98 18.385 116.386-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2ecc71",
d: "M496.166 162.157c0-7.774 26.06-14.086 58.193-14.086 32.142 0 58.193 6.312 58.193 14.086 0 7.784-26.05 14.087-58.193 14.087-32.133 0-58.193-6.303-58.193-14.087z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#16a085",
d: "M353.465 206.264v41.655c22.044 19.602 97.991 18.376 116.376-2.451v-42.881z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2ecc71",
d: "M353.465 203.209c0-7.775 26.05-14.086 58.184-14.086 32.142 0 58.192 6.311 58.192 14.086 0 7.784-26.05 14.086-58.192 14.086-32.134 0-58.184-6.302-58.184-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#16a085",
d: "M210.754 247.315v41.655c22.045 19.602 97.992 18.377 116.377-2.45v-42.882z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2ecc71",
d: "M210.754 244.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.05 14.087-58.193 14.087-32.133 0-58.184-6.303-58.184-14.087z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#16a085",
d: "M68.044 288.358v41.664c22.053 19.602 97.991 18.376 116.376-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#2ecc71",
d: "M68.044 285.312c0-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.133 0-58.184-6.311-58.184-14.086z"
}));
}
const ForwardRef = React.forwardRef(LegoGreenIcon);
module.exports = ForwardRef;