UNPKG

@blueprintjs/icons

Version:

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

24 lines 2.06 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 = ["M13.568 1.26h.004a1.25 1.25 0 0 1 1.156 1.054l.011.114.001.004a8 8 0 0 1-.213 2.244c-.225.942-.673 2.031-1.552 2.91l-.225.225v3.543c0 .33-.131.648-.365.882h-.001l-2.147 2.148a1.25 1.25 0 0 1-2.12-.708v-.002l-.326-2.322-3.144-3.144-2.32-.324h-.003a1.25 1.25 0 0 1-1.04-1.524l.051-.166a1.25 1.25 0 0 1 .281-.43l2.148-2.148c.234-.235.552-.366.882-.366H8.19l.225-.225c.88-.88 1.969-1.328 2.911-1.553a8.3 8.3 0 0 1 1.833-.222zM3.623 9.498a.75.75 0 0 1 .888 1.209c-.314.23-.782.717-.95 1.73 1.015-.167 1.501-.634 1.732-.948a.75.75 0 0 1 1.209.888C5.936 13.147 4.812 14 2.75 14a.75.75 0 0 1-.75-.75c0-2.062.852-3.186 1.623-3.752m5.671 1.768.237 1.702 1.719-1.719V9.311zm3.953-8.514c-.376-.003-.95.03-1.574.179-.773.184-1.577.533-2.198 1.155L6.06 7.5 8.5 9.94l3.414-3.415c.621-.62.97-1.424 1.154-2.198.15-.625.182-1.199.18-1.575M3.032 6.468l1.701.237L6.69 4.75H4.751zM11 4.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5"]; export const RocketSlantIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "rocket-slant", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); RocketSlantIcon.displayName = "Blueprint6.Icon.Next.RocketSlantIcon"; export default RocketSlantIcon; //# sourceMappingURL=rocket-slant.js.map