UNPKG

@blueprintjs/icons

Version:

Components, fonts, icons, and css files for creating and displaying icons.

24 lines 2.09 kB
import { jsx as _jsx } from "react/jsx-runtime"; /* * Copyright 2026 Palantir Technologies, Inc. All rights reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import * as React from "react"; import { SvgIconContainerNext } from "../../svgIconContainerNext"; const PATHS = ["M5.75 1.357c.498 0 .983.185 1.348.525.365.341.58.815.58 1.318v5.97c.451.32.812.75 1.036 1.253a2.9 2.9 0 0 1 .137 1.977 3.04 3.04 0 0 1-1.162 1.627 3.34 3.34 0 0 1-1.94.617 3.34 3.34 0 0 1-1.939-.617A3.04 3.04 0 0 1 2.648 12.4a2.9 2.9 0 0 1 .139-1.977A3.07 3.07 0 0 1 3.821 9.17V3.2c0-.503.215-.977.581-1.318a1.98 1.98 0 0 1 1.348-.525m5.264 3.401c.422.036.79.2 1.03.303.277.118.427.175.571.187.104.009.247-.003.476-.151a.75.75 0 1 1 .818 1.257c-.487.317-.96.428-1.423.388-.422-.036-.79-.2-1.03-.303-.277-.118-.427-.175-.571-.187-.104-.009-.248.003-.476.151a.75.75 0 1 1-.818-1.257c.487-.317.96-.428 1.423-.388m0-2.5c.422.036.79.2 1.03.303.277.118.427.175.571.187.104.009.247-.003.476-.151a.75.75 0 1 1 .818 1.257c-.487.317-.96.428-1.423.388-.422-.036-.79-.2-1.03-.303-.277-.118-.427-.175-.571-.187-.104-.009-.248.003-.476.151a.75.75 0 1 1-.818-1.257c.487-.317.96-.428 1.423-.388"]; export const ThermometerHotFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "thermometer-hot-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); ThermometerHotFilledIcon.displayName = "Blueprint6.Icon.Next.ThermometerHotFilledIcon"; export default ThermometerHotFilledIcon; //# sourceMappingURL=thermometer-hot-filled.js.map