@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.19 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Replace(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: "M5.396 6.282l2.922 2.922a.554.554 0 0 1 .182.426c0 .366-.243.609-.609.609L5.9 10.238V14.5a2.1 2.1 0 0 0 1.95 2.095L8 16.6h7.275a.9.9 0 0 1 .113 1.793l-.113.007H8a3.9 3.9 0 0 1-3.895-3.7l-.005-.2v-4.262H2.109a.535.535 0 0 1-.353-.116l-.073-.066a.588.588 0 0 1 0-.852l2.921-2.922c.244-.243.609-.243.792 0zm10.6-.682a3.9 3.9 0 0 1 3.894 3.7l.005.2v4.262h1.992c.146 0 .253.038.352.116l.074.066a.588.588 0 0 1 0 .852l-2.922 2.922c-.243.243-.609.243-.791 0l-2.923-2.922a.554.554 0 0 1-.182-.426c0-.366.244-.609.61-.609l1.99.001V9.5a2.1 2.1 0 0 0-1.95-2.095l-.15-.005H8.72a.9.9 0 0 1-.113-1.793L8.72 5.6h7.275z"
}));
}