@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 • 1.31 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function MoneyTransferOut(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: "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 9.776c-.609 0-1.13-.436-1.13-1.044v-2a.187.187 0 0 0-.174-.174H9.39a.79.79 0 0 1-.608-.261.84.84 0 0 1 0-1.217l2.608-2.61a.84.84 0 0 1 1.218 0l2.609 2.61a.79.79 0 0 1 .26.608c0 .522-.347.87-.87.87h-1.39a.187.187 0 0 0-.174.174v2c0 .522-.435 1.043-1.044 1.043z"
}));
}