@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.57 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.975 2.25c3.964-.014 7.275 3.286 7.275 7.25v2a.75.75 0 0 1-.75.75h-13a.75.75 0 0 1-.75-.75V9.57c0-3.995 3.208-7.306 7.225-7.32m2.71 3.39a.75.75 0 0 0-1.045.175L6.114 10.75h1.844l2.902-4.064a.75.75 0 0 0-.175-1.046M2.54 7.75a5.8 5.8 0 0 0-.28 1.5H3.5a.75.75 0 0 0 0-1.5zm9.96 0a.75.75 0 0 0 0 1.5h1.244a5.6 5.6 0 0 0-.277-1.5zm-4.52-4c-.248 0-.491.02-.73.05V5a.75.75 0 1 0 1.5 0V3.802a6 6 0 0 0-.479-.045z"];
export const GaugeFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "gauge-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
GaugeFilledIcon.displayName = "Blueprint6.Icon.Next.GaugeFilledIcon";
export default GaugeFilledIcon;
//# sourceMappingURL=gauge-filled.js.map