@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.36 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Link(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.38 14.713a.932.932 0 0 1 1.218.506 2.807 2.807 0 0 1-.607 3.052l-2.64 2.639a3.734 3.734 0 0 1-5.28 0l-1.98-1.98a3.74 3.74 0 0 1 0-5.28l2.643-2.639a2.831 2.831 0 0 1 3.05-.608.932.932 0 0 1 .507 1.218.934.934 0 0 1-1.219.507.946.946 0 0 0-1.018.203L4.411 14.97H4.41a1.867 1.867 0 0 0 .001 2.64l1.98 1.98c.73.73 1.911.73 2.64 0l2.64-2.64a.932.932 0 0 0 .202-1.017v-.001a.933.933 0 0 1 .507-1.22zM8.04 15.96a.934.934 0 0 1 0-1.32l7.26-7.26a.934.934 0 0 1 1.298 0c.37.358.381.95.023 1.32l-7.26 7.26a.944.944 0 0 1-1.32 0zM20.91 5.07a3.739 3.739 0 0 1-.003 5.282l-2.64 2.638a2.823 2.823 0 0 1-3.052.609.935.935 0 0 1 .714-1.726.948.948 0 0 0 1.018-.203l2.643-2.635h.001a1.867 1.867 0 0 0 0-2.64l-1.98-1.98a1.867 1.867 0 0 0-2.64 0l-2.64 2.64a.932.932 0 0 0-.202 1.014.934.934 0 0 1-1.726.713 2.807 2.807 0 0 1 .608-3.051l2.64-2.64a3.739 3.739 0 0 1 5.28 0l1.98 1.98z"
}));
}