@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.85 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function SelfTransfer(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: "M12.246 13.33a3.61 3.61 0 0 1 .604 1.993v1.413c0 .5.333.832.832.832h7.486c.5 0 .832.333.832.832 0 .5-.333.832-.832.832h-7.486c-1.414 0-2.495-1.081-2.495-2.495v-1.414c0-.618-.286-1.235-.859-1.586a6.878 6.878 0 0 1-3.3-1.575c0-.083-.084-.083-.084-.083-.083 0-.25.083-.25.166l-.332 1.164c-.083.084 0 .084 0 .167 1.913 2.578 2.246 3.16 3.078 6.654v.083c.083.666-.333 1.414-.998 1.498-.666.083-1.331-.333-1.498-.999-.499-2.329-.748-2.994-1.497-4.159l-.998 4.16a1.24 1.24 0 0 1-1.497.914 1.24 1.24 0 0 1-.915-1.497L4.948 8.585c.166-.5.582-.915 1.081-.915.915-.166 1.248.499 1.498.998.665 1.331 1.247 2.33 3.826 2.745.749.083 1.164.749 1.081 1.414a1.178 1.178 0 0 1-.187.502zM7.443 6.338a2.08 2.08 0 1 1 0-4.159 2.08 2.08 0 0 1 0 4.159zm7.653 15.388a1.081 1.081 0 1 1 0-2.162 1.081 1.081 0 0 1 0 2.162zm4.325 0a1.081 1.081 0 1 1 0-2.162 1.081 1.081 0 0 1 0 2.162zm-.915-4.74c-.499 0-.831-.334-.831-.833v-4.741c0-.499.416-.832.831-.832h.25c.166 0 .25-.083.25-.25v-.665c0-.332.249-.582.582-.582.333 0 .582.25.582.582v.666c0 .166.083.25.25.25h.25c.498 0 .83.415.83.831v4.741c0 .5-.415.832-.83.832h-2.164zm-4.242 0c-.499 0-.832-.334-.832-.833v-4.741c0-.499.416-.832.832-.832h.582c.167 0 .25.083.25.25v5.906c0 .166-.083.25-.25.25h-.582zm1.58 0c-.082 0-.249-.084-.249-.25V10.83c0-.167.083-.25.25-.25h.582c.499 0 .832.416.832.832v4.741c0 .5-.416.832-.832.832h-.582z"
}));
}