UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

61 lines (59 loc) 2.63 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function LegoBlueSquareIcon({ 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: "M0 240.79v321.523l359.819 145.466V386.24z" }), /*#__PURE__*/React.createElement("path", { fill: "#2da6ff", d: "M800 567.7V256.766l-442.096 131.39v321.522z" }), /*#__PURE__*/React.createElement("path", { fill: "#2da6ff", d: "M0 244.62l445.712-131.347L800 256.766 359.819 391.971z" }), /*#__PURE__*/React.createElement("path", { fill: "#002ec4", d: "M290.93 263.738v65.075c34.437 30.62 153.081 28.721 181.803-3.83v-66.988z" }), /*#__PURE__*/React.createElement("path", { fill: "#2da6ff", d: "M290.93 258.967c0-12.147 40.696-22.007 90.894-22.007 50.213 0 90.909 9.86 90.909 22.007 0 12.16-40.696 22.005-90.909 22.005-50.198 0-90.894-9.846-90.894-22.005z" }), /*#__PURE__*/React.createElement("path", { fill: "#002ec4", d: "M517.701 197.708v65.073c34.451 30.636 153.095 28.722 181.803-3.814v-66.99z" }), /*#__PURE__*/React.createElement("path", { fill: "#2da6ff", d: "M517.701 192.95c0-12.16 40.696-22.007 90.908-22.007 50.199 0 90.895 9.847 90.895 22.007 0 12.145-40.696 22.004-90.895 22.004-50.212 0-90.908-9.86-90.908-22.004z" }), /*#__PURE__*/React.createElement("path", { fill: "#002ec4", d: "M329.24 118.332v65.072c34.45 30.622 153.095 28.708 181.802-3.83v-66.988z" }), /*#__PURE__*/React.createElement("path", { fill: "#2da6ff", d: "M329.24 113.558c0-12.146 40.695-22.005 90.908-22.005 50.198 0 90.894 9.859 90.894 22.005 0 12.16-40.696 22.007-90.894 22.007-50.213 0-90.908-9.847-90.908-22.007z" }), /*#__PURE__*/React.createElement("path", { fill: "#002ec4", d: "M106.298 182.46v65.074c34.452 30.623 153.096 28.707 181.802-3.828v-66.99z" }), /*#__PURE__*/React.createElement("path", { fill: "#2da6ff", d: "M106.298 177.688c0-12.159 40.696-22.006 90.908-22.006 50.199 0 90.894 9.847 90.894 22.006 0 12.16-40.695 22.006-90.894 22.006-50.212 0-90.908-9.846-90.908-22.006z" })); } const ForwardRef = React.forwardRef(LegoBlueSquareIcon); module.exports = ForwardRef;