@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 1.06 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./GpsOff.js.flow";
export default function GpsOff(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<path d="M5.116 16.055A7.972 7.972 0 0 1 4.069 13H2v-2h2.069A8.01 8.01 0 0 1 11 4.069V2h2v2.069a7.993 7.993 0 0 1 3.055 1.046L14.58 6.591A6.037 6.037 0 0 0 13 6.095V7h-2v-.91C8.167 6.569 6 9.033 6 12c0 .924.216 1.797.592 2.579l-1.476 1.476zm13.768-8.111c.543.918.908 1.95 1.047 3.056H22v2h-2.069A8.01 8.01 0 0 1 13 19.931V22h-2v-2.07a7.953 7.953 0 0 1-3.056-1.046l-3.323 3.322-1.414-1.413L21.178 2.822l1.414 1.414-3.708 3.708zM12 18c3.309 0 6-2.691 6-6a5.95 5.95 0 0 0-.592-2.581l-1.559 1.559c.353 1.332.024 2.807-1.021 3.851a3.985 3.985 0 0 1-3.851 1.022l-1.558 1.558A5.96 5.96 0 0 0 12 18z" />
</OrbitIcon>
);
}