@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 1.1 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Link.js.flow";
export default function Link(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<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" />
</OrbitIcon>
);
}