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 891 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function RouteOneStop(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: "M12.858 11.161h4.726a.18.18 0 0 0 .167-.167V9.411c0-.75.916-1.083 1.415-.583l2.585 2.583a.807.807 0 0 1 0 1.167l-2.585 2.583c-.499.501-1.416.167-1.416-.583v-1.583a.18.18 0 0 0-.166-.167h-4.726a2.501 2.501 0 0 1-4.716 0H2.833c-.5 0-.833-.334-.833-.834s.333-.833.833-.833h5.31a2.501 2.501 0 0 1 4.715 0z" })); }