@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.89 kB
JavaScript
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.78.8a.5.5 0 0 1 .569.091c1.139 1.11 1.999 2.052 2.461 3.295.41 1.098.49 2.38.284 4.144q.18-.072.31-.167c.214-.156.411-.403.648-.884l.032-.057a.5.5 0 0 1 .822-.013c1.257 1.756 1.583 3.495.89 4.945-.683 1.429-2.275 2.401-4.448 2.836a.5.5 0 0 1-.576-.64c.301-.963.282-1.465.188-1.746-.088-.26-.266-.416-.581-.626-.29-.193-.752-.458-1.06-.932a2.25 2.25 0 0 1-.329-.887c-.548.62-.74 1.166-.74 1.655 0 .714.401 1.472 1.137 2.368a.501.501 0 0 1-.352.817l-.074-.001h-.006l-.013-.001-.043-.004-.156-.019a9 9 0 0 1-.542-.088 8.3 8.3 0 0 1-1.647-.495C3.36 13.881 2 12.876 2 11c0-1.733.703-2.95 1.575-3.92.43-.478.905-.901 1.348-1.291.45-.397.863-.755 1.21-1.13.599-.643.969-1.084 1.182-1.557.204-.45.282-.97.188-1.796a.5.5 0 0 1 .276-.505"];
export const FlameFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "flame-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
FlameFilledIcon.displayName = "Blueprint6.Icon.Next.FlameFilledIcon";
export default FlameFilledIcon;
//# sourceMappingURL=flame-filled.js.map