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 = ["M14.5 10.996a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0m-7.962-.75h4.442l-4.913-1.39zM3 8.877c.639.226 1.143.73 1.37 1.37h.585L4.316 8.36 3 7.988zm8.685.01.823.232q.229-.15.492-.242v-.72l-.7-.449zM6.75 7.489l3.46.98.821-1.572-3.75-2.4H6.75zm-3.287-.93 1.787.507v-2.57h-.357zM1.5 10.997a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0m14.5 0a2.25 2.25 0 0 1-4.37.75H4.37a2.248 2.248 0 1 1-2.87-2.87v-1.88a.75.75 0 0 1 .134-.427l2.25-3.25.056-.073a.75.75 0 0 1 .56-.25h3a.75.75 0 0 1 .404.118l6.25 4a.75.75 0 0 1 .346.631v1.131a2.25 2.25 0 0 1 1.5 2.12"]; export const BuggyIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "buggy", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); BuggyIcon.displayName = "Blueprint6.Icon.Next.BuggyIcon"; export default BuggyIcon; //# sourceMappingURL=buggy.js.map