UNPKG

@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 977 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Download(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.01zM11.997 2c.892 0 1.616.723 1.616 1.615v7.554c0 .115.093.208.208.208h2.215a.808.808 0 0 1 .61 1.338l-4.039 4.646a.807.807 0 0 1-1.22 0l-4.039-4.646a.808.808 0 0 1 .61-1.338h2.215a.208.208 0 0 0 .209-.208V3.615c0-.892.723-1.615 1.615-1.615z" })); }