@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
84 lines (82 loc) • 4.07 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function AstronautIcon({
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: "#9b9b9a",
d: "M50.902 27.521c0 1.225-.147 2.417-.424 3.557-1.597 6.567-7.517 11.443-14.576 11.443s-12.979-4.876-14.576-11.443a15.04 15.04 0 01-.424-3.557c0-8.284 6.716-15 15-15s15 6.716 15 15z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#d0cfce",
d: "M31.931 12.927s-6.519 2.24-9.184 7.385c-1.16 2.113-3.006 3.505-1.42 10.766 1.585 7.26 10.56 11.047 10.56 11.047a15.023 15.023 0 0011.139-11.047c.277-1.14.423-2.331.423-3.557 0-7.085-4.912-13.024-11.518-14.594zM16.764 58.738s-2-13.5 10-13.5c3.192 2.128 5.927 3.599 9 3.593h-.125c3.074.006 5.508-2.165 8.7-4.293 15.57 0 10.7 14.2 10.7 14.2"
}), /*#__PURE__*/React.createElement("path", {
fill: "#9b9b9a",
d: "M28.45 52.893h15.561v5.824H28.45z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#9b9b9a",
d: "M44.745 45.666c-3.17 2.113-4.875 3-8.937 3.588 13.062.412 13.062 5.412 13.824 9.412h5.113s2-13-10-13z"
}), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
fill: "#fcea2b",
d: "M47.117 26.549c-.365-2.563-13.943-8.544-22.21-.807 0 0-.316 1.985-.316 3.132 0 7.828 5.077 14.173 11.34 14.173 6.261 0 11.338-6.345 11.338-14.173 0-.792.213.237-.152-2.325z"
})), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
d: "M34.795 58.708a2 2 0 00-1.934-2.508h.006a2.001 2.001 0 00-1.934 2.508M41.497 58.708a2 2 0 00-1.934-2.508h.006a2.001 2.001 0 00-1.934 2.508"
}), /*#__PURE__*/React.createElement("path", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2,
d: "M16.87 57.807s-2-13 10-13c3.192 2.128 5.927 3.598 9 3.592h-.125c3.074.006 5.808-1.464 9-3.592 12 0 10 13 10 13M47.792 28.076a9.455 9.455 0 00-5.673-4.598c-2.12-.621-4.13-.902-6.217-.843-2.087-.06-4.096.222-6.216.844a9.452 9.452 0 00-5.673 4.597M53.864 25.456v4.771M17.751 25.456v4.771"
}), /*#__PURE__*/React.createElement("path", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2,
d: "M43.83 57.785v-4.808H28.57v4.808"
}), /*#__PURE__*/React.createElement("path", {
d: "M41.93 26.954a2 2 0 11-4.001-.001 2 2 0 014.001.001M33.93 26.954a2 2 0 11-4.001-.001 2 2 0 014.001.001M35.93 36.957c-1.152 0-2.304-.286-3.447-.858a1 1 0 11.894-1.79c1.718.86 3.388.86 5.106 0a1 1 0 01.894 1.79c-1.143.572-2.295.858-3.447.858z"
}), /*#__PURE__*/React.createElement("path", {
fill: "none",
stroke: "#000",
strokeMiterlimit: 10,
strokeWidth: 2,
d: "M46.235 34.236a17.147 17.147 0 001.034-5.92c0-.388-.013-.772-.037-1.151M24.634 27.077c-.028.408-.043.82-.043 1.238 0 7.828 5.077 14.173 11.34 14.173"
}), /*#__PURE__*/React.createElement("path", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeMiterlimit: 10,
strokeWidth: 2,
d: "M36.556 39.343s7.04-.005 9.592-5.139"
}), /*#__PURE__*/React.createElement("path", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2,
d: "M50.902 27.521c0 1.225-.147 2.417-.424 3.557-1.597 6.567-7.517 11.443-14.576 11.443s-12.979-4.876-14.576-11.443a15.04 15.04 0 01-.424-3.557c0-8.284 6.716-15 15-15s15 6.716 15 15z"
})));
}
const ForwardRef = React.forwardRef(AstronautIcon);
module.exports = ForwardRef;