@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
35 lines (33 loc) • 1.99 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function SpaceInvadersAlien4Icon({
title,
titleId,
size,
colored,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 937.422 286.883",
fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
"aria-hidden": "true",
width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: colored ? '#304c2e' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#304c2e') ? 'white' : 'currentColor'),
d: "M0 0h937.422v286.883H0z"
}), /*#__PURE__*/React.createElement("path", {
fill: colored ? '#00d700' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#00d700') ? 'white' : 'currentColor'),
d: "M119.355 63.442v20h20v-20h-20zm20 20v20h-20v20h-20v20h-20v60h20v-40h20v40h20v-20h100v20h20v-40h20v40h20v-60h-20v-20h-20v-20h-20v-20h-20v20h-60v-20h-20zm100 0h20v-20h-20v20zm0 120h-40v20h40v-20zm-100 0v20h40v-20h-40zm0-80h20v20h-20v-20zm80 0h20v20h-20v-20zM458.71 63.442v20h-60v20h-20v60h60v20h-20v20h40v-20h20v-20h40v20h20v20h40v-20h-20v-20h60v-60h-20v-20h-60v-20h-80zm120 140v20h40v-20h-40zm-60-20h-40v20h40v-20zm-100 20h-40v20h40v-20zm20-80h40v20h-40v-20zm80 0h40v20h-40v-20zM758.066 63.442v20h-20v20h-20v20h-20v40h40v20h20v-20h40v20h20v-20h40v-40h-20v-20h-20v-20h-20v-20h-40zm60 120v20h20v-20h-20zm20 20v20h20v-20h-20zm-20 0h-20v20h20v-20zm-20 0v-20h-40v20h40zm-40 0h-20v20h20v-20zm-20 0v-20h-20v20h20zm-20 0h-20v20h20v-20zm20-80h20v20h-20v-20zm60 0h20v20h-20v-20z"
}));
}
const ForwardRef = React.forwardRef(SpaceInvadersAlien4Icon);
module.exports = ForwardRef;