UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.83 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 = ["M11.125 1.22a.75.75 0 0 1 1.06 0l2.595 2.595a.75.75 0 0 1-1.06 1.06l-.768-.768-.885.885 1.667 1.667a.75.75 0 0 1-1.06 1.06l-.12-.117-1.246 1.246-1.784-1.784a.75.75 0 0 0-1.06 1.06l1.783 1.784-.726.726-1.456-1.456a.75.75 0 0 0-1.06 1.06l1.455 1.456-1.333 1.335a.8.8 0 0 1-.259.168l-.098.032h-.004l-.007.002q-.01.001-.023.005l-.08.017a8 8 0 0 1-1.165.15 4.8 4.8 0 0 1-1.123-.063 3 3 0 0 1-.503-.147L2.531 14.53a.75.75 0 1 1-1.061-1.06l1.338-1.34a3 3 0 0 1-.138-.49 5 5 0 0 1-.063-1.117 8 8 0 0 1 .14-1.168l.016-.08.005-.022.002-.007v-.004l.03-.102a.75.75 0 0 1 .17-.265L8.4 3.446l-.118-.118a.75.75 0 1 1 1.06-1.06l1.664 1.664.886-.885-.767-.767a.75.75 0 0 1 0-1.06"]; export const SyringeFilledIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "syringe-filled", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); SyringeFilledIcon.displayName = "Blueprint6.Icon.Next.SyringeFilledIcon"; export default SyringeFilledIcon; //# sourceMappingURL=syringe-filled.js.map