@blueprintjs/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
24 lines • 1.81 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 = ["M13.5 13.75a.75.75 0 1 1 0 1.5H6a.75.75 0 0 1 0-1.5zM6.367.866a1.25 1.25 0 0 1 1.768 0l1 1c.39.39.466.973.232 1.441l2.325 2.324a1.25 1.25 0 0 1 1.443.235l1 1a1.25 1.25 0 0 1 0 1.767l-3.25 3.25a1.25 1.25 0 0 1-1.768 0l-1-1a1.25 1.25 0 0 1-.351-1.071l-3.61 3.611c-.41.395-.9.601-1.4.599a1.8 1.8 0 0 1-1.252-.526 1.8 1.8 0 0 1-.526-1.253c-.002-.5.204-.989.6-1.398l3.61-3.611a1.25 1.25 0 0 1-1.072-.35l-.999-1a1.25 1.25 0 0 1 0-1.768zM2.655 11.887c-.155.161-.177.285-.177.349.001.072.03.144.086.2a.3.3 0 0 0 .2.086c.064 0 .185-.022.343-.173l3.84-3.84-.457-.457zm6.7-1.888.646.647 2.897-2.897-.647-.646zM6.662 6.103l2.233 2.232 1.689-1.688-2.232-2.233zM4.354 4.999 5 5.646l2.897-2.897-.646-.646z"];
export const GavelIcon = React.forwardRef((props, ref) => {
return (_jsx(SvgIconContainerNext, { iconName: "gavel", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) }));
});
GavelIcon.displayName = "Blueprint6.Icon.Next.GavelIcon";
export default GavelIcon;
//# sourceMappingURL=gavel.js.map