@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
85 lines (83 loc) • 4.16 kB
JavaScript
import * as React from "react";
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function LegoRedIcon({
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: "#c00104",
d: "M1.982 327.085V532.9l230.329 93.116V420.192z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ff212c",
d: "M801.982 446.224V254.788l-570.897 166.63v205.815z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ff212c",
d: "M1.982 329.528l567.229-172.75 231.545 98.01L232.311 423.86z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#c00104",
d: "M188.213 341.775v41.655c22.045 19.602 97.992 18.386 116.377-2.451v-42.881z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ff212c",
d: "M188.213 338.72c0-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: "#c00104",
d: "M333.375 299.507v41.655c22.054 19.611 98 18.386 116.377-2.442v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ff212c",
d: "M333.375 296.461c0-7.784 26.05-14.086 58.193-14.086 32.133 0 58.184 6.302 58.184 14.086 0 7.775-26.05 14.087-58.184 14.087-32.142 0-58.193-6.312-58.193-14.087z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#c00104",
d: "M474.87 257.24v41.663c22.052 19.602 98 18.377 116.376-2.45V253.57z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ff212c",
d: "M474.87 254.193c0-7.784 26.05-14.086 58.192-14.086 32.133 0 58.184 6.302 58.184 14.086 0 7.775-26.05 14.087-58.184 14.087-32.142 0-58.193-6.312-58.193-14.087z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#c00104",
d: "M611.47 216.206v41.655c22.053 19.602 98 18.376 116.376-2.451v-42.881z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ff212c",
d: "M611.47 213.15c0-7.774 26.05-14.085 58.192-14.085 32.134 0 58.184 6.311 58.184 14.086 0 7.784-26.05 14.086-58.184 14.086-32.142 0-58.192-6.302-58.192-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#c00104",
d: "M498.157 166.593v41.655c22.054 19.611 98 18.385 116.377-2.442v-42.89z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ff212c",
d: "M498.157 163.538c0-7.775 26.05-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: "#c00104",
d: "M355.447 207.645V249.3c22.053 19.601 98 18.385 116.376-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ff212c",
d: "M355.447 204.59c0-7.775 26.05-14.087 58.183-14.087 32.143 0 58.193 6.312 58.193 14.087 0 7.783-26.05 14.086-58.193 14.086-32.133 0-58.183-6.303-58.183-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#c00104",
d: "M212.736 248.696v41.655c22.054 19.602 98 18.376 116.377-2.451v-42.881z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ff212c",
d: "M212.736 245.64c0-7.774 26.051-14.085 58.193-14.085 32.133 0 58.184 6.311 58.184 14.086 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: "#c00104",
d: "M70.026 289.748v41.655c22.053 19.601 98 18.376 116.376-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ff212c",
d: "M70.026 286.692c0-7.784 26.05-14.086 58.193-14.086 32.133 0 58.183 6.302 58.183 14.086 0 7.784-26.05 14.087-58.183 14.087-32.143 0-58.193-6.303-58.193-14.087z"
}));
}
const ForwardRef = React.forwardRef(LegoRedIcon);
export default ForwardRef;