@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
73 lines (71 loc) • 3.84 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function LegoYellowIcon({
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: "#fcd327",
d: "M0 315.824V521.65l230.329 93.106V408.931z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#f5fa40",
d: "M800 434.963V243.527l-570.897 166.63V615.98z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#f5fa40",
d: "M0 318.276l567.22-172.759 231.554 98.01L230.33 412.608z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#e9b018",
d: "M186.222 330.514v41.656c22.054 19.61 98 18.385 116.386-2.443v-42.89z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#f5fa40",
d: "M186.222 327.46c0-7.776 26.051-14.087 58.193-14.087 32.133 0 58.193 6.311 58.193 14.086 0 7.784-26.06 14.086-58.193 14.086-32.142 0-58.193-6.302-58.193-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#e9b018",
d: "M331.393 288.246v41.665c22.054 19.601 98 18.376 116.377-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#f5fa40",
d: "M331.393 285.2c0-7.784 26.051-14.086 58.184-14.086 32.142 0 58.193 6.302 58.193 14.086 0 7.775-26.05 14.087-58.193 14.087-32.133 0-58.184-6.312-58.184-14.087z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#e9b018",
d: "M472.887 245.987v41.656c22.054 19.601 98 18.376 116.377-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#f5fa40",
d: "M472.887 242.933c0-7.785 26.05-14.087 58.193-14.087 32.133 0 58.184 6.302 58.184 14.087 0 7.783-26.05 14.086-58.184 14.086-32.142 0-58.193-6.303-58.193-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#e9b018",
d: "M609.488 204.945V246.6c22.053 19.602 98 18.377 116.376-2.451v-42.881zM496.175 155.332v41.655c22.045 19.612 97.991 18.386 116.377-2.442v-42.88zM353.465 196.384v41.655c22.044 19.61 98 18.385 116.376-2.442v-42.89z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#f5fa40",
d: "M353.465 193.329c0-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.086-58.192 14.086-32.134 0-58.184-6.302-58.184-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#e9b018",
d: "M210.755 237.435v41.655c22.053 19.602 98 18.385 116.376-2.451v-42.881z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#f5fa40",
d: "M210.755 234.38c0-7.775 26.05-14.086 58.183-14.086 32.143 0 58.193 6.311 58.193 14.086 0 7.784-26.05 14.086-58.193 14.086-32.133 0-58.183-6.302-58.183-14.086z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#e9b018",
d: "M68.044 278.487v41.655c22.053 19.601 98 18.376 116.377-2.452v-42.88z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#f5fa40",
d: "M68.044 275.431c0-7.774 26.05-14.086 58.184-14.086 32.142 0 58.193 6.312 58.193 14.086 0 7.785-26.051 14.087-58.193 14.087-32.133 0-58.184-6.302-58.184-14.087zM609.488 204.945c0-7.775 26.05-14.086 58.183-14.086 32.143 0 58.193 6.311 58.193 14.086 0 7.784-26.05 14.086-58.193 14.086-32.133 0-58.183-6.302-58.183-14.086zM496.175 155.332c0-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"
}));
}
const ForwardRef = React.forwardRef(LegoYellowIcon);
module.exports = ForwardRef;