@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 • 818 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ArrowDown(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.975 16.351h-2.522a.207.207 0 0 1-.208-.207V3.25a1.25 1.25 0 1 0-2.5 0v12.893a.208.208 0 0 1-.208.208H8.013a.834.834 0 0 0-.589 1.423l3.981 3.982a.833.833 0 0 0 1.179 0l3.982-3.982a.835.835 0 0 0 .18-.908.835.835 0 0 0-.77-.515z"
}));
}