UNPKG

@blueprintjs/icons

Version:

Components, fonts, icons, and css files for creating and displaying icons.

24 lines 1.66 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 = ["M13.5 13.75a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1 0-1.5zM8.092 3c.136 0 .267.054.364.15l3.394 3.393a.517.517 0 0 1 0 .73l-2.827 2.826a.517.517 0 0 1-.73 0l-.583-.585-3.729 3.73c-.367.355-.796.53-1.223.528a1.54 1.54 0 0 1-1.077-.452 1.54 1.54 0 0 1-.453-1.077c-.002-.428.174-.856.529-1.224l3.728-3.73-.584-.584a.515.515 0 0 1 0-.728L7.728 3.15l.078-.065A.5.5 0 0 1 8.092 3m4.598 4.689a1 1 0 0 1 1.415 1.414l-3.25 3.25a1 1 0 0 1-1.415-1.414zM5.897.896A1 1 0 0 1 7.311 2.31l-3.25 3.25a1 1 0 1 1-1.414-1.414z"]; export const GavelFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "gavel-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); GavelFilledIcon.displayName = "Blueprint6.Icon.Next.GavelFilledIcon"; export default GavelFilledIcon; //# sourceMappingURL=gavel-filled.js.map