@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 • 979 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Upload(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: "M20.884 16.112a1.01 1.01 0 0 1 1.014 1.01v1.545A3.333 3.333 0 0 1 18.566 22H5.429A3.333 3.333 0 0 1 2.1 18.667v-1.545a1.01 1.01 0 0 1 2.02 0v1.545a1.31 1.31 0 0 0 1.308 1.308h13.138a1.31 1.31 0 0 0 1.309-1.308v-1.545c0-.558.452-1.01 1.01-1.01zm-8.887 1.527a1.616 1.616 0 0 1-1.615-1.615V8.47a.208.208 0 0 0-.209-.208H7.958a.808.808 0 0 1-.61-1.338l4.04-4.646a.807.807 0 0 1 1.22 0l4.038 4.646a.808.808 0 0 1-.61 1.338h-2.215a.208.208 0 0 0-.208.208v7.554c0 .892-.724 1.615-1.616 1.615z"
}));
}