@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.21 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Wifi(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: "M4.867 10.133c3.942-3.93 10.321-3.93 14.264 0 .21.21.329.495.328.792v.026a1.112 1.112 0 0 1-1.117 1.095 1.12 1.12 0 0 1-.792-.328 7.858 7.858 0 0 0-11.098 0 1.121 1.121 0 0 1-1.585-1.585zM21.672 6.7a1.121 1.121 0 1 1-1.586 1.586c-4.47-4.458-11.703-4.458-16.172 0a1.121 1.121 0 1 1-1.586-1.586c5.346-5.332 13.998-5.332 19.344 0zm-7.535 5.332a6.447 6.447 0 0 1 2.457 1.531 1.122 1.122 0 0 1-.792 1.915 1.118 1.118 0 0 1-.79-.327c-.053-.049-.115-.09-.17-.139a4.258 4.258 0 0 0-5.854.14 1.118 1.118 0 0 1-.793.328 1.121 1.121 0 0 1-.792-1.913 6.504 6.504 0 0 1 6.734-1.535zM12 21.303a2.242 2.242 0 1 1 0-4.484 2.242 2.242 0 0 1 0 4.484z"
}));
}