@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) • 754 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Wifi.js.flow";
export default function Wifi(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="M11.8 21l3.6-4.8c-1-.75-2.25-1.2-3.6-1.2s-2.6.45-3.6 1.2l3.6 4.8zm0-18C7.75 3 4.01 4.34 1 6.6L2.8 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3l1.8-2.4C19.59 4.34 15.85 3 11.8 3zm0 6c-2.7 0-5.19.89-7.2 2.4l1.8 2.4c1.5-1.13 3.37-1.8 5.4-1.8 2.03 0 3.9.67 5.4 1.8l1.8-2.4C16.99 9.89 14.5 9 11.8 9z" />
</OrbitIcon>
);
}