@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
55 lines (53 loc) • 2.8 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function AlienMaskIcon({
title,
titleId,
size,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 72 72",
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: "#d0cfce",
d: "M56.727 32.378c0 5.478-2.594 10.778-5.122 15.64-.634 1.221-1.656 1.967-2.385 3.085-.608.932-.985 2.24-1.642 3.084C43.585 59.321 39.81 63 35.943 63c-3.827 0-7.767-3.32-11.734-8.36-.681-.867-1.146-2.458-1.776-3.418-.532-.81-1.625-2.41-2.109-3.276-2.852-5.109-5.166-9.677-5.166-15.568C15.158 17.417 25.55 10 35.943 10s20.784 7.417 20.784 22.378z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#9b9b9a",
d: "M36.943 62.25c6-5 11.853-46.357 11.926-47.304 3.109 2.542 7.1 8.926 7.725 13.032 1.165 7.657-2.396 17.783-7.374 23.125-5.16 11.11-12.277 11.147-12.277 11.147"
}), /*#__PURE__*/React.createElement("path", {
fill: "#3f3f3f",
d: "M22.57 42.348c1.992 3.7 5.344 5.712 7.486 4.494 2.142-1.217 2.263-5.204.27-8.904s-5.344-5.712-7.486-4.494-2.263 5.204-.27 8.904zM49.032 42.348c-1.993 3.7-5.344 5.712-7.486 4.494-2.142-1.217-2.263-5.204-.27-8.904s5.344-5.712 7.485-4.494c2.142 1.217 2.263 5.204.27 8.904z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M30.747 53.669c.429.405 2.333 2.11 5.101 1.927 2.246-.148 3.752-1.452 4.251-1.927"
}), /*#__PURE__*/React.createElement("path", {
strokeMiterlimit: 10,
d: "M22.57 42.348c1.992 3.7 5.344 5.712 7.486 4.494 2.142-1.217 2.263-5.204.27-8.904s-5.344-5.712-7.486-4.494-2.263 5.204-.27 8.904z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M35.943 63c-8.125 0-11.966-7.775-13.12-10.69a5.599 5.599 0 00-1.175-1.833c-1.88-1.951-6.49-7.786-6.49-18.1C15.158 17.418 25.55 10 35.943 10s20.784 7.417 20.784 22.378c0 10.372-4.173 15.69-6.23 17.819a9.084 9.084 0 00-1.655 2.347C44.814 60.867 40.109 63 35.942 63z"
}), /*#__PURE__*/React.createElement("path", {
strokeMiterlimit: 10,
d: "M49.032 42.348c-1.993 3.7-5.344 5.712-7.486 4.494-2.142-1.217-2.263-5.204-.27-8.904s5.344-5.712 7.485-4.494c2.142 1.217 2.263 5.204.27 8.904z"
})));
}
const ForwardRef = React.forwardRef(AlienMaskIcon);
module.exports = ForwardRef;