@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 2.02 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 = ["M9.273 1.114a.75.75 0 0 1 .588-.088 7.2 7.2 0 0 1 1.753.725c.206.12.344.33.37.566l.163 1.453.082.082 1.454.164.087.015c.2.046.374.173.478.353.32.55.564 1.14.727 1.754.06.23.01.475-.139.661l-.913 1.142v.117l.912 1.143c.148.185.2.43.14.66a7.2 7.2 0 0 1-.722 1.754.75.75 0 0 1-.566.37l-1.454.163-.082.082-.163 1.453a.75.75 0 0 1-.37.565c-.55.32-1.14.564-1.753.727a.75.75 0 0 1-.66-.139l-1.144-.913h-.116l-1.143.912a.75.75 0 0 1-.66.14 7.2 7.2 0 0 1-1.754-.722.75.75 0 0 1-.37-.566l-.164-1.453-.084-.084-1.456-.171a.75.75 0 0 1-.562-.368 7.2 7.2 0 0 1-.726-1.754.75.75 0 0 1 .138-.66l.912-1.143v-.118l-.91-1.142a.75.75 0 0 1-.14-.66A7.2 7.2 0 0 1 1.75 4.38l.05-.074a.75.75 0 0 1 .516-.295l1.454-.164.082-.082.163-1.453a.75.75 0 0 1 .371-.566 7.2 7.2 0 0 1 1.752-.721l.086-.017a.75.75 0 0 1 .573.156l1.142.913h.117L9.2 1.165zM8 5.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5"];
export const GearFilledIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "gear-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
GearFilledIcon.displayName = "Blueprint6.Icon.Next.GearFilledIcon";
export default GearFilledIcon;
//# sourceMappingURL=gear-filled.js.map