@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 • 796 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ChevronLeft(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: "M15.254 16.089c.369.333.398.904.065 1.274a.898.898 0 0 1-1.27.066l-5.303-4.795a.904.904 0 0 1 .002-1.343l5.256-4.72a.898.898 0 0 1 1.271.07c.332.372.3.942-.07 1.275l-4.18 3.753a.4.4 0 0 0 0 .594l4.229 3.826z"
}));
}