UNPKG

@blueprintjs/icons

Version:

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

24 lines 1.88 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 = ["M2 8.887a.75.75 0 0 1 .75.75 3.615 3.615 0 0 0 3.613 3.613.75.75 0 0 1 0 1.5A5.114 5.114 0 0 1 1.25 9.637a.75.75 0 0 1 .75-.75m8.97-.417a.75.75 0 0 1 1.004-.052l.056.052 2.5 2.5a.75.75 0 0 1 0 1.06l-.5.5a.75.75 0 0 1-1.06 0l-2.5-2.5a.75.75 0 0 1 0-1.06zm-6.47.28a.75.75 0 0 1 .75.75 1.07 1.07 0 0 0 1.068 1.068.75.75 0 0 1 0 1.5A2.57 2.57 0 0 1 3.75 9.5a.75.75 0 0 1 .75-.75m2.5-.5a.75.75 0 0 1 .75.75v.01a.75.75 0 1 1-1.5 0V9A.75.75 0 0 1 7 8.25m4.97-6.28a.75.75 0 0 1 1.004-.052l.056.052 1 1a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 0 1-1.06 0l-1-1a.75.75 0 0 1 0-1.06zm-7.421-.72c.2 0 .392.082.532.225l2.454 2.5A.75.75 0 0 1 7.53 5.03l-.5.5a.75.75 0 0 1-1.055.005l-2.5-2.454a.75.75 0 0 1-.005-1.066l.546-.545a.75.75 0 0 1 .533-.22"]; export const SatelliteIcon = React.forwardRef((props, ref) => { return (_jsx(SvgIconContainerNext, { iconName: "satellite", ref: ref, ...props, children: PATHS.map((d, i) => (_jsx("path", { d: d }, i))) })); }); SatelliteIcon.displayName = "Blueprint6.Icon.Next.SatelliteIcon"; export default SatelliteIcon; //# sourceMappingURL=satellite.js.map