@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.15 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Logout(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: "M14.334 2.45c1.003 0 1.818.815 1.818 1.818v3.727a.909.909 0 1 1-1.818 0V4.723a.455.455 0 0 0-.455-.455H5.243a.455.455 0 0 0-.455.455v14.545c0 .251.204.455.455.455h8.636c.251 0 .455-.204.455-.455v-3.273a.909.909 0 1 1 1.818 0v3.728a1.819 1.819 0 0 1-1.818 1.818H4.788a1.819 1.819 0 0 1-1.818-1.818V4.268c0-1.003.815-1.818 1.818-1.818zm3.235 6.88c.321-.32.748-.32 1.069 0l2.137 2.138c.32.32.32.748 0 1.068l-2.137 2.137c-.214.214-.535.32-.801.16-.065 0-.13-.038-.182-.08l-.086-.08a.689.689 0 0 1-.214-.534v-.962c0-.107-.107-.214-.213-.213H9.555a.958.958 0 0 1-.962-.962c0-.534.428-.962.962-.962h7.587a.232.232 0 0 0 .214-.214v-.962c0-.214.053-.373.213-.534z"
}));
}