@wellness-icons/react
Version:
101 lines • 2.87 kB
JavaScript
const React = require("react");
function ThermometerIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
xmlSpace: "preserve",
style: {
fillRule: "evenodd",
clipRule: "evenodd",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10
},
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M0 39.913C0 46.395-5.255 51.65-11.737 51.65s-11.737-5.255-11.737-11.737a11.74 11.74 0 0 1 4.942-9.579V-4.933a6.797 6.797 0 1 1 13.591 0v35.267A11.74 11.74 0 0 1 0 39.913",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.17px"
},
transform: "translate(13.049 5.703)scale(.31552)"
}), /*#__PURE__*/React.createElement("circle", {
cx: -5.725,
r: 5.725,
style: {
fill: "none",
stroke: "#000",
strokeWidth: "3.17px"
},
transform: "matrix(0 -.31552 -.31552 0 9.345 16.502)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-12.815 12.815h25.63",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.17px"
},
transform: "matrix(0 -.31552 -.31552 0 13.389 12.46)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h12.884",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.17px"
},
transform: "translate(14.293 2.414)scale(.31552)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h7.339",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.17px"
},
transform: "translate(14.293 5.009)scale(.31552)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h12.884",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.17px"
},
transform: "translate(14.293 7.603)scale(.31552)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h7.339",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.17px"
},
transform: "translate(14.293 10.197)scale(.31552)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h12.884",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.17px"
},
transform: "translate(14.293 12.792)scale(.31552)"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ThermometerIcon);
module.exports = ForwardRef;