UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.77 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 = ["M10.25 3A5 5 0 1 1 8 12.464a5 5 0 1 1 0-8.929A5 5 0 0 1 10.25 3m-5.709 8.286a3.5 3.5 0 0 0 2.043.112 5 5 0 0 1-.62-.824zM10.25 4.5q-.433.001-.835.1A4.98 4.98 0 0 1 10.75 8a4.98 4.98 0 0 1-1.335 3.398q.403.1.835.102a3.5 3.5 0 1 0 0-7M2.812 9.9c.19.296.425.56.694.785l2.03-1.015a5 5 0 0 1-.242-1.01zm4.5 0c.19.293.422.557.688.78a3.5 3.5 0 0 0 1.103-1.675zM2.25 7.93V8q.002.52.143.992l2.878-1.44c.039-.443.136-.87.284-1.273zm4.5 0V8q.002.52.143.992l2.351-1.176a3.5 3.5 0 0 0-.21-1.026zm-1-3.43a3.5 3.5 0 0 0-3.244 2.186L6.51 4.684l.074-.083A3.5 3.5 0 0 0 5.75 4.5M8 5.318a3.5 3.5 0 0 0-.995 1.368l1.552-.776A3.5 3.5 0 0 0 8 5.318"]; export const LeftJoinIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "left-join", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); LeftJoinIcon.displayName = "Blueprint6.Icon.Next.LeftJoinIcon"; export default LeftJoinIcon; //# sourceMappingURL=left-join.js.map