UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.38 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.25c.524 0 1.036.194 1.421.553.387.36.615.863.615 1.397v5.913c.445.328.802.76 1.026 1.265.287.648.339 1.37.143 2.05a3.15 3.15 0 0 1-1.203 1.686 3.44 3.44 0 0 1-2.002.636c-.718 0-1.422-.22-2.002-.636a3.15 3.15 0 0 1-1.202-1.685 3 3 0 0 1 .143-2.051 3.2 3.2 0 0 1 1.026-1.265V3.2c0-.534.227-1.036.614-1.397A2.08 2.08 0 0 1 5.75 1.25m0 1.5c-.158 0-.3.059-.397.15a.4.4 0 0 0-.138.3v6.322a.75.75 0 0 1-.395.66c-.35.19-.614.475-.76.804a1.5 1.5 0 0 0-.073 1.029c.098.34.317.652.634.88.319.228.716.355 1.13.355s.81-.127 1.128-.355.536-.54.634-.88a1.5 1.5 0 0 0-.072-1.029 1.7 1.7 0 0 0-.761-.803.75.75 0 0 1-.394-.66V3.2a.4.4 0 0 0-.138-.3.6.6 0 0 0-.398-.15m5.264 2.008c.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-.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-.388m0-2.5c.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-.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"]; export const ThermometerHotIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "thermometer-hot", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); ThermometerHotIcon.displayName = "Blueprint6.Icon.Next.ThermometerHotIcon"; export default ThermometerHotIcon; //# sourceMappingURL=thermometer-hot.js.map