@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
49 lines (47 loc) • 2.32 kB
JavaScript
import * as React from "react";
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function ThermometerIcon({
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: "#fff",
d: "M35.97 3.452c-3 0-4.683 2.433-4.683 5.434v23.106h9.118l.25-23.106c0-3.001-1.683-5.434-4.684-5.434z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#ea5a47",
d: "M40.566 47.498C44.092 49.327 47 53.004 47 57.243c0 6.061-4.925 10.975-11 10.975s-11-4.914-11-10.975c0-4.254 3.138-8.198 6.684-10.02l.09-18.52s7.571 1.436 8.773-1.144l.019 19.94z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#d22f27",
d: "M37.041 29.403c1.693-.15 1.283-.33 3.486-1.241l.024 18.828c0 .557.182 1.104.535 1.539 2.168 2.67 5.252 5.211 5.252 9.091 0 5.994-4.99 10.037-10.431 10.037 0 0 10.103-7.61 1.692-16.586-.356-.38-.551-1.23-.551-1.775l-.007-19.893z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M38.387 35.913c-.721.16-1.974.266-3.4.266-2.236 0-4.049-.26-4.049-.582M38.387 43.61c-.721.16-1.974.266-3.4.266-2.236 0-4.049-.26-4.049-.581M38.387 28.216c-.721.16-1.974.266-3.4.266-2.236 0-4.049-.261-4.049-.582M38.387 20.518c-.721.16-1.974.266-3.4.266-2.236 0-4.049-.26-4.049-.582"
}), /*#__PURE__*/React.createElement("path", {
d: "M29.663 49.462c1.294-.963 1.276-2.236 1.276-2.236V8.639a5.082 5.082 0 1110.165 0v38.587s.005 1.286 1.298 2.249a10.146 10.146 0 013.788 7.916c0 5.614-4.55 10.165-10.165 10.165S25.86 63.005 25.86 57.391c0-1.536.34-2.992.95-4.297"
}), /*#__PURE__*/React.createElement("path", {
d: "M38.387 12.82c-.721.16-1.974.266-3.4.266-2.236 0-4.049-.26-4.049-.581"
})));
}
const ForwardRef = React.forwardRef(ThermometerIcon);
export default ForwardRef;