@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 • 955 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function RouteTwoStops(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: "M9.358 11.161h1.784a2.501 2.501 0 0 1 4.716 0h1.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-1.726a2.502 2.502 0 0 1-4.716 0H9.358a2.501 2.501 0 0 1-4.716 0H2.833c-.5 0-.833-.334-.833-.834s.333-.833.833-.833h1.81a2.501 2.501 0 0 1 4.715 0z"
}));
}