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