@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
45 lines (43 loc) • 2.12 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function SnakeIcon({
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: "#5c9e31",
d: "M11.38 52.367l1.75-4.375 2.688-2.938 3.875-1.875 4.312-.125 6.076.576 18.754 8.357 9.67 5.067-.25 1.188-13.304 1.74-20.774.963z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#b1cc33",
d: "M18.455 50.754a1 1 0 001 .989h.011l1.132-.014a28.3 28.3 0 0011.6-2.187c8.23-3.493 4.665-25.974 4.157-28.931v-.133a5.576 5.576 0 015.57-5.569c3.4 0 7.962 2.765 7.962 5.592 0 3.252-6.458 3.5-6.523 3.5a1 1 0 00-.955 1.21c3.074 14.237 1.364 29.705-2.2 31.3-5.617 2.519-16.07 2.844-23.41 2.081-1.858-.193-3.148-.744-3.833-1.637-.7-.916-.88-2.275-.56-4.279.004-.032-.007-.061 0-.092"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
strokeLinejoin: "round",
d: "M44.97 59c2.193.007 9.421-.092 12.49-.183a1.187 1.187 0 00.5-2.241l-9.472-3.638M19.454 50.74l1.126-.014c3.85.102 7.676-.617 11.226-2.107 7.82-3.319 3.55-27.92 3.55-27.92v-.224a6.57 6.57 0 016.57-6.57h0c3.627 0 8.961 2.964 8.961 6.592 0 4.333-7.5 4.5-7.5 4.5 2.935 13.6 1.708 30.419-2.772 32.428-5.794 2.6-16.262 2.959-23.923 2.163-5.217-.542-5.83-3.608-5.278-7.068M29.687 44.563c-13.33-5.972-18.322 6.062-18.275 7.957"
}), /*#__PURE__*/React.createElement("path", {
strokeMiterlimit: 10,
d: "M48.74 24.452s3.792 4.054 7.584 4.577M56.873 33.606l-1.046-4.577 4.838-2.223"
})));
}
const ForwardRef = React.forwardRef(SnakeIcon);
module.exports = ForwardRef;