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.6 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function WifiOff(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: "M7.84 14.994a.9.9 0 0 1-.09-.077 1.056 1.056 0 0 1 0-1.5 5.846 5.846 0 0 1 3.331-1.665l2.087-2.087c-2.236-.343-4.615.352-6.418 2.085-.333.417-1 .417-1.417 0a1.056 1.056 0 0 1 0-1.5c2.592-2.518 6.303-3.325 9.554-2.303l1.527-1.528C12.495 4.61 7.698 5.31 4.5 8.583a1.056 1.056 0 0 1-1.5 0 1.056 1.056 0 0 1 0-1.5C7.033 3.05 13.16 2.338 17.954 4.88l2.63-2.629a.806.806 0 0 1 1.166 0 .806.806 0 0 1 0 1.167L3.417 21.75c-.25.333-.834.333-1.167 0a.806.806 0 0 1 0-1.167l5.59-5.589zM12 16.5c1.167 0 2.083.917 2.083 2.083 0 1.167-.916 2.084-2.083 2.084s-2.083-.917-2.083-2.084c0-1.166.916-2.083 2.083-2.083zm9-9.417a1.056 1.056 0 0 1 0 1.5 1.056 1.056 0 0 1-1.5 0c-.25-.25-.417-.416-.667-.583l1.5-1.5c.25.167.5.417.667.583zm-6.417 5.167c.584.333 1.167.667 1.667 1.25.25.25.333.5.333.75 0 .583-.416 1.083-1 1.083-.25 0-.583-.166-.75-.333l-.166-.167c-.5-.5-1.167-.75-1.75-.916l1.666-1.667zM17.5 9.333c.417.25.75.584 1.083 1 .25.25.334.5.334.75 0 .584-.417 1-1 1-.25 0-.584-.166-.75-.333-.417-.333-.75-.667-1.167-.917l1.5-1.5z" })); }