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 = ["M7.67.577a.75.75 0 0 1 .853.136c1.14 1.11 2.038 2.087 2.522 3.387.385 1.034.486 2.212.35 3.737.127-.131.266-.33.432-.668l.049-.085a.75.75 0 0 1 1.234-.02c1.288 1.8 1.658 3.636.912 5.198-.732 1.53-2.413 2.531-4.625 2.974a.75.75 0 0 1-.836-1.032c.348-.812.362-1.236.314-1.463-.044-.207-.16-.37-.44-.62-.244-.22-.713-.578-1.055-1.043a3 3 0 0 1-.263-.424c-.276.45-.406.85-.431 1.213-.044.633.21 1.324.894 2.158a.75.75 0 0 1-.526 1.223h-.119l-.014-.002-.047-.004-.162-.019a9 9 0 0 1-.558-.09 8.5 8.5 0 0 1-1.699-.512c-1.228-.525-2.705-1.594-2.705-3.62 0-1.812.74-3.086 1.64-4.088.44-.49.925-.922 1.368-1.311.454-.4.855-.749 1.192-1.111.6-.647.943-1.061 1.138-1.492.18-.396.258-.869.167-1.664A.75.75 0 0 1 7.67.577m.99 2.456q-.077.3-.206.585c-.309.682-.817 1.26-1.404 1.892-.4.431-.868.836-1.302 1.218-.445.392-.868.77-1.243 1.187C3.774 8.73 3.25 9.661 3.25 11c0 1.124.773 1.806 1.795 2.242q.206.088.411.157a3.7 3.7 0 0 1-.267-1.636c.08-1.15.717-2.23 1.78-3.293A.75.75 0 0 1 8.25 9c0 .596.155.939.339 1.189.22.3.47.474.85.816.346.312.76.743.905 1.427.064.305.065.632.013.986 1.223-.444 1.972-1.094 2.311-1.803.335-.701.342-1.618-.203-2.726q-.15.155-.324.284c-.446.325-.955.468-1.512.566a.75.75 0 0 1-.871-.85c.312-2.08.235-3.313-.12-4.266-.208-.559-.525-1.054-.978-1.59"]; export const FlameIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "flame", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); FlameIcon.displayName = "Blueprint6.Icon.Next.FlameIcon"; export default FlameIcon; //# sourceMappingURL=flame.js.map