@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.
22 lines • 1.08 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Exchange(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M8.675 13.217a8.98 8.98 0 0 0 7.256 3.78C15.438 20.938 12.073 24 8 24c-4.411 0-8-3.589-8-8 0-4.073 3.062-7.438 7.003-7.93a8.947 8.947 0 0 0 .686 3.384c-1.293.559-2.337 1.674-2.612 3.546H4v2h1.077c.429 2.922 2.74 4 4.923 4v-2c-1.157 0-2.491-.387-2.879-2H10v-2H7.121c.241-1.005.847-1.531 1.554-1.783zM16 16c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8zM4 7L0 3h3V1c0-.551.448-1 1-1h5v2H5v1h3L4 7zm16 10l4 4h-3v2a1 1 0 0 1-1 1h-5v-2h4v-1h-3l4-4zm-7-7v2h2v1h2v-1.051c1.14-.232 2-1.242 2-2.449C19 8.122 17.878 7 16.5 7h-1a.5.5 0 0 1 0-1H19V4h-2V3h-2v1.051c-1.14.232-2 1.242-2 2.449C13 7.878 14.122 9 15.5 9h1a.5.5 0 0 1 0 1H13z"
}));
}