@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.11 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const ThermometerIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M19.5 12.074a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5zm0-4a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5zm0-4a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M15.5 13.238V6.001a3.5 3.5 0 0 0-7 0v7.273c-.004.016-.025.092-.102.248-.055.11-.117.22-.202.374-.077.138-.178.32-.266.508a4.5 4.5 0 1 0 8.174.073 8 8 0 0 0-.276-.545l-.038-.072c-.07-.129-.125-.23-.175-.33a1.3 1.3 0 0 1-.115-.292m-4.25-3.91v7.661a.75.75 0 0 0 1.5 0v-7.66a.75.75 0 0 0-1.5 0",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(ThermometerIcon);
export default ForwardRef;