@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 • 753 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Refund(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: "M13 3a9 9 0 0 1 0 18c-2.5 0-4.73-1-6.36-2.64l1.42-1.42A6.944 6.944 0 0 0 13 19a7 7 0 1 0-7-7h3l-4.04 4.03L1 12h3a9 9 0 0 1 9-9zm3 7h-3.5a.5.5 0 0 0 0 1h1c1.378 0 2.5 1.122 2.5 2.5 0 1.207-.86 2.217-2 2.449V17h-2v-1h-2v-2h3.5a.5.5 0 0 0 0-1h-1a2.503 2.503 0 0 1-2.5-2.5c0-1.207.86-2.217 2-2.449V7h2v1h2v2z"
}));
}