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.

18 lines 1.32 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Transmission(props) { return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: props.size, color: props.color, customColor: props.customColor, className: props.className, dataTest: props.dataTest, ariaHidden: props.ariaHidden, reverseOnRtl: props.reverseOnRtl, ariaLabel: props.ariaLabel }, React.createElement("path", { d: "M4.222 2A2.222 2.222 0 0 0 2 4.222a2.222 2.222 0 0 0 1.111 1.923v9.49A2.222 2.222 0 0 0 2 17.555a2.222 2.222 0 0 0 4.444 0 2.222 2.222 0 0 0-1.11-1.922v-3.077A.556.556 0 0 1 5.888 12h4.444a.556.556 0 0 1 .556.556v3.079a2.222 2.222 0 0 0-1.111 1.92 2.222 2.222 0 1 0 4.444 0 2.222 2.222 0 0 0-1.11-1.922v-3.077a.556.556 0 0 1 .555-.556h4.444a.556.556 0 0 1 .556.556v5.301a2.222 2.222 0 0 0-1.112 1.92 2.222 2.222 0 1 0 4.445 0 2.222 2.222 0 0 0-1.111-1.922V6.143A2.222 2.222 0 0 0 22 4.223a2.222 2.222 0 0 0-4.444 0 2.222 2.222 0 0 0 1.11 1.922v3.077a.556.556 0 0 1-.555.556h-4.444a.556.556 0 0 1-.556-.556v-3.08a2.222 2.222 0 0 0 1.111-1.92 2.222 2.222 0 0 0-4.444 0 2.222 2.222 0 0 0 1.11 1.923v3.077a.556.556 0 0 1-.555.556H5.89a.556.556 0 0 1-.556-.556v-3.08a2.222 2.222 0 0 0 1.111-1.92A2.222 2.222 0 0 0 4.223 2z" })); }