UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

28 lines 1.89 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function GpsOff(props) { const { color, size, customColor, className, dataTest, ariaHidden, ariaLabel, reverseOnRtl } = props; return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: size, color: color, customColor: customColor, className: className, dataTest: dataTest, ariaHidden: ariaHidden, reverseOnRtl: reverseOnRtl, ariaLabel: ariaLabel }, React.createElement("path", { d: "M11.998 21.997a.842.842 0 0 1-.841-.842v-1.182a.619.619 0 0 0-.502-.604 7.555 7.555 0 0 1-6.028-6.028.614.614 0 0 0-.604-.502H2.842A.843.843 0 0 1 2 11.997c0-.463.378-.84.842-.84H4.02a.616.616 0 0 0 .606-.503A7.196 7.196 0 0 1 4.9 9.585a.844.844 0 0 1 1.06-.5.847.847 0 0 1 .531 1.05 5.775 5.775 0 0 0 1.394 5.984 5.78 5.78 0 0 0 4.11 1.701 5.784 5.784 0 0 0 1.877-.312.818.818 0 0 1 .264-.043.838.838 0 0 1 .556.208.84.84 0 0 1 .271.795.844.844 0 0 1-.554.634 7.496 7.496 0 0 1-1.066.274.612.612 0 0 0-.504.604v1.175a.843.843 0 0 1-.842.842zm-.003-15.815a5.799 5.799 0 0 0-2.793.718.62.62 0 0 0-.311.452.616.616 0 0 0 .174.521l7.06 7.06a.614.614 0 0 0 .436.181c.275-.033.445-.151.537-.32.99-1.792.955-4-.087-5.763a5.835 5.835 0 0 0-5-2.85h-.016zM21.159 22a.851.851 0 0 1-.596-.247L2.247 3.435A.835.835 0 0 1 2 2.842a.836.836 0 0 1 .246-.595A.836.836 0 0 1 2.842 2c.224 0 .436.087.595.247l3.516 3.52a.613.613 0 0 0 .433.176.611.611 0 0 0 .353-.111 7.396 7.396 0 0 1 2.918-1.206.615.615 0 0 0 .505-.604V2.84a.841.841 0 0 1 1.682 0v1.185c0 .295.212.55.502.605a7.55 7.55 0 0 1 6.027 6.027.614.614 0 0 0 .604.502h1.182a.842.842 0 0 1 0 1.684h-1.18a.616.616 0 0 0-.606.502 7.385 7.385 0 0 1-1.204 2.919.613.613 0 0 0 .072.785l3.512 3.514a.845.845 0 0 1 .218.813.844.844 0 0 1-.595.595.873.873 0 0 1-.217.028z" })); }