@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.07 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Link(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: "M3.583 16.285l-.706-.707a3.003 3.003 0 0 1 0-4.243l8.486-8.485c1.132-1.134 3.109-1.134 4.242 0l.706.708L14.9 4.97l-.707-.708a.996.996 0 0 0-.709-.292.99.99 0 0 0-.707.292L4.29 12.748a1.002 1.002 0 0 0 0 1.416l.707.707-1.413 1.414zm17.678-7.777c.567.567.879 1.32.879 2.122 0 .8-.313 1.553-.878 2.12l-8.486 8.485a2.98 2.98 0 0 1-2.12.878 2.98 2.98 0 0 1-2.123-.878l-.706-.707 1.414-1.413.707.707a1.027 1.027 0 0 0 1.415 0l8.485-8.486a.996.996 0 0 0 .292-.707.99.99 0 0 0-.293-.707l-.707-.707 1.413-1.413.709.707zM19.848 2.85l1.414 1.415-7.071 7.07-1.414-1.414 7.07-7.07zm-9.9 9.898l1.414 1.414-7.07 7.072-1.414-1.413 7.07-7.073z"
}));
}