@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 • 726 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function RouteNoStops(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: "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"
}));
}