@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 • 895 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Send(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: "M19.863 3.587a.375.375 0 0 0-.384-.058L2.231 10.653a.375.375 0 0 0 .007.695l4.749 1.844a.375.375 0 0 0 .35-.042l6.3-4.48a.375.375 0 0 1 .478.576l-5.25 5.059a.375.375 0 0 0-.114.27v5.049a.375.375 0 0 0 .698.189l2.375-4.068a.188.188 0 0 1 .253-.07l4.369 2.4a.375.375 0 0 0 .547-.25l3-13.873a.381.381 0 0 0-.13-.365z"
}));
}