UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.79 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 = ["M9.5 1.25a.75.75 0 0 1 .75.75v6h3a.75.75 0 0 1 .75.773l-.001.004v.014l-.001.05-.003.178A9 9 0 0 0 14 9.5c0 .805.059 1.996-.157 2.947-.112.49-.313 1.01-.704 1.41-.414.422-.971.643-1.639.643h-.722c.485-.58.822-1.39.822-2.5a.6.6 0 1 0-1.2 0c0 1.271-.561 1.893-1.14 2.23-.21.123-.428.208-.631.27h-1.35c.484-.58.82-1.39.82-2.5A.6.6 0 1 0 6.9 12c0 1.271-.561 1.893-1.14 2.23-.21.123-.428.208-.631.27H3.975a.748.748 0 0 1-.23-1.46c.721-.332 1-.761 1.134-1.271C5.04 11.154 5 10.449 5 9.5v-.75A.75.75 0 0 1 5.75 8h3V2a.75.75 0 0 1 .75-.75M6.75 4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5zm0-2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5z"]; export const BroomFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "broom-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); BroomFilledIcon.displayName = "Blueprint6.Icon.Next.BroomFilledIcon"; export default BroomFilledIcon; //# sourceMappingURL=broom-filled.js.map