@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 • 1.22 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function MoneyTransferIn(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: "M21.13 10.47c.522 0 .87.349.87.87v9.566c0 .521-.348.87-.87.87H2.87c-.522 0-.87-.349-.87-.87V11.34c0-.521.348-.87.87-.87h18.26zM4.61 13.95c.521 0 .87-.348.87-.87 0-.521-.349-.87-.87-.87s-.87.349-.87.87c0 .522.348.87.87.87zM12 18.732c1.478 0 2.609-1.13 2.609-2.609 0-1.478-1.13-2.609-2.609-2.609-1.478 0-2.609 1.13-2.609 2.609 0 1.478 1.13 2.609 2.609 2.609zm7.391 1.304c.522 0 .87-.348.87-.87 0-.521-.348-.869-.87-.869s-.87.348-.87.87c0 .521.349.87.87.87zM12 2.21c.609 0 1.13.435 1.13 1.044v2c0 .087.087.173.174.173h1.305a.79.79 0 0 1 .608.261.84.84 0 0 1 0 1.218L12.61 9.514a.84.84 0 0 1-1.218 0L8.783 6.906a.79.79 0 0 1-.261-.609c0-.522.348-.87.87-.87h1.39a.187.187 0 0 0 .175-.174v-2c0-.521.434-1.043 1.043-1.043z"
}));
}