UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.78 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 = ["M2.995 1.945a.75.75 0 0 1 1.06.05l10 11a.75.75 0 0 1-1.11 1.01l-1.772-1.95q-.006.108-.015.221c-.02.242-.051.5-.104.736-.05.223-.136.504-.314.74l-.003.004a1.253 1.253 0 0 1-1.875.129L6.02 11.042l-2.489 2.49a.75.75 0 0 1-1.06-1.061l2.488-2.49L2.116 7.14l.001-.001a1.25 1.25 0 0 1-.228-1.455 1.25 1.25 0 0 1 .329-.402h-.001c.676-.546 1.48-.663 2.123-.663l.074.001-1.469-1.615a.75.75 0 0 1 .05-1.06m7.715-.695c.33 0 .649.132.883.366l2.792 2.793a1.25 1.25 0 0 1 0 1.766L12.198 8.37a.75.75 0 0 1-1.093-.032L7.819 4.622a.75.75 0 0 1 .03-1.026l1.976-1.98c.235-.234.553-.366.884-.366"]; export const PushPinSlashFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "push-pin-slash-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); PushPinSlashFilledIcon.displayName = "Blueprint6.Icon.Next.PushPinSlashFilledIcon"; export default PushPinSlashFilledIcon; //# sourceMappingURL=push-pin-slash-filled.js.map