UNPKG

@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.03 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function NewWindow(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.927 5.692a.91.91 0 0 1 0 1.82H5.49a.09.09 0 0 0-.09.09V18.51c0 .05.04.09.09.09h10.907c.05 0 .09-.04.09-.09v-7.43a.91.91 0 1 1 1.82 0v7.43a1.91 1.91 0 0 1-1.91 1.91H5.49a1.91 1.91 0 0 1-1.91-1.91V7.602a1.91 1.91 0 0 1 1.91-1.91zm6.736-2.112c.453 0 .756.302.756.756v3.022c0 .302-.152.604-.454.68-.076.076-.227.076-.302.076a.689.689 0 0 1-.53-.227l-.679-.68c-.076-.076-.227-.076-.302 0l-5.365 5.365a.958.958 0 0 1-1.36 0 .958.958 0 0 1 0-1.36l5.365-5.365a.232.232 0 0 0 0-.302l-.681-.68a.685.685 0 0 1-.226-.53c0-.453.302-.755.756-.755z" })); }