UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.04 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.594a.75.75 0 0 1-1.06 1.061l-.768-.768-.886.886 1.667 1.666a.75.75 0 0 1-1.061 1.06l-.118-.117-5.428 5.427a.8.8 0 0 1-.259.168l-.098.032h-.004l-.007.001-.024.006a7 7 0 0 1-.354.069 8 8 0 0 1-.89.098c-.342.017-.74.01-1.123-.063a3 3 0 0 1-.502-.147L2.53 14.53a.75.75 0 1 1-1.06-1.06l1.338-1.34a3 3 0 0 1-.139-.49 5 5 0 0 1-.063-1.118 8 8 0 0 1 .156-1.247l.005-.022.002-.007v-.004l.03-.102a.75.75 0 0 1 .172-.265l5.428-5.428-.119-.118a.75.75 0 1 1 1.061-1.06l1.665 1.665.886-.886-.767-.767a.75.75 0 0 1 0-1.06m-6.93 8.55-.015.093c-.03.192-.064.452-.076.727-.013.279-.003.549.039.77.043.225.104.324.133.356q.003 0 .004.003l.002.002c.04.037.145.102.37.146.22.043.487.052.763.038a6 6 0 0 0 .717-.08l.093-.017 1.049-1.05-.77-.77a.75.75 0 0 1 1.06-1.06l.77.77.727-.726-1.098-1.098a.75.75 0 0 1 1.06-1.06l1.098 1.097 1.371-1.371-1.008-1.008-.008-.008-.01-.01-1.008-1.008z"]; export const SyringeIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "syringe", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); SyringeIcon.displayName = "Blueprint6.Icon.Next.SyringeIcon"; export default SyringeIcon; //# sourceMappingURL=syringe.js.map