UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.71 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.594 1.296C12.406.593 13.78.16 14.81 1.19c1.099 1.098.533 2.588-.25 3.37l-1.923 1.923 1.33 6.203a1.5 1.5 0 0 1-.407 1.375l-.5.5a1.5 1.5 0 0 1-2.445-.483l-1.639-3.934L7.66 11.46l.295 1.177a1.5 1.5 0 0 1-.395 1.424l-.5.5a1.5 1.5 0 0 1-2.453-.504l-.762-1.903-1.902-.761a1.502 1.502 0 0 1-.504-2.453l.5-.5.148-.13a1.5 1.5 0 0 1 1.277-.265l1.176.294 1.315-1.316-3.932-1.638a1.5 1.5 0 0 1-.484-2.445l.5-.5.142-.125a1.5 1.5 0 0 1 1.233-.281l6.202 1.328L11.44 1.44zM13.5 3.5c1-1 0-2-1-1L10 5 3 3.5l-.5.5 6 2.5L5 10l-2-.5-.5.5L5 11l1 2.5.5-.5-.5-2 3.5-3.5 2.5 6 .5-.5L11 6z"]; export const AirplaneIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "airplane", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); AirplaneIcon.displayName = "Blueprint6.Icon.Next.AirplaneIcon"; export default AirplaneIcon; //# sourceMappingURL=airplane.js.map