@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.
22 lines • 731 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Wifi(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("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"
}));
}