@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
40 lines (38 loc) • 1.54 kB
JavaScript
import * as React from "react";
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function LizardIcon({
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: "#B1CC33",
d: "M39.917 47.358S47.799 45 53.899 46.5 68 46 68 46s-7.667.667-15.333-3.667S39 40.833 32.5 40.417c-6.5-.417-14.167-4.584-17.833-7C11 31 8.583 31.25 8.583 31.25S8 32 6 33s-5 2 1 4 8.833 5.833 8.833 5.833 6 6.025 24.084 4.525z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M39.917 46.5s7.882-1.5 13.982 0S68 46 68 46s-7.667.667-15.333-3.667S39 40.833 32.5 40.417c-6.5-.417-14.167-4.584-17.833-7C11 31 8.583 31.25 8.583 31.25S8 32 6 33s-5 2 1 4 8.833 4.833 8.833 4.833M21.387 45.026s5.716 1.807 10.613 1.39M19 43l-3 7M16 48h-1M17 48l1 1M36.547 46.506l-.468 6.865M35.418 51.73l-.928.374M36.345 51.356l1.258.447"
})));
}
const ForwardRef = React.forwardRef(LizardIcon);
export default ForwardRef;