@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 • 816 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function RouteNoStops(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: "M21.75 11.411l-2.584-2.583c-.499-.5-1.416-.167-1.416.583v1.583a.18.18 0 0 1-.166.167H2.834c-.5 0-.834.333-.834.833s.333.834.833.834h14.75a.18.18 0 0 1 .168.167v1.583c0 .75.916 1.084 1.415.583l2.585-2.583a.807.807 0 0 0 0-1.167"
}));
}