@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 • 701 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ChevronDown(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: "M7.912 8.747a.904.904 0 0 0-1.274-.065.898.898 0 0 0-.066 1.27l4.796 5.303a.904.904 0 0 0 1.342-.003l4.72-5.255a.898.898 0 0 0-.07-1.271.904.904 0 0 0-1.274.07l-3.754 4.18a.4.4 0 0 1-.595 0L7.912 8.747z"
}));
}