@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 1.41 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./SelfTransfer.js.flow";
export default function SelfTransfer(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<path d="M16.67 2c-1.091 0-1.989.962-1.989 2.132 0 1.212.898 2.132 1.99 2.132s1.989-.92 1.989-2.132c0-1.17-.897-2.132-1.99-2.132zm-1.286 5.266c-.39-.042-.82.084-1.17.251-.234.126-1.95 1.505-1.95 1.505-.624.46-2.535 3.26-2.535 3.26l.43.293-1.6 3.929-2.067-1.046c-.508-.25-1.092 0-1.326.544L3.098 20.85c-.234.544-.039 1.213.468 1.464l.586.25c0-.083-.04-.167-.04-.25 0-1.17.898-2.132 1.99-2.132.663 0 1.248.376 1.599.92l3.393-7.859.273.21s1.6-2.383 2.028-2.675c0 0 .468-.335 1.014-.669-.156 1.17-.507 2.257-.585 2.717-.312 1.798-.156 2.216.351 2.926.468.71 1.912 3.176 1.912 3.176l1.716 4.473h1.95l-1.912-5.309-.897-3.636 1.014-5.058c.117-.836-.312-1.588-1.014-1.797l-1.56-.335zm3.198 3.846l-.585 2.173 2.106 1.129L21 12.49l-2.106-1.17c-.195-.084-.156-.084-.312-.21zm-4.68 6.353L11.796 23.4h1.99l1.403-3.93-1.287-2.005zm-7.8 3.803c-.546 0-1.014.46-1.014 1.046 0 .627.468 1.086 1.014 1.086s.975-.46.975-1.086c0-.586-.429-1.046-.975-1.046z" />
</OrbitIcon>
);
}