@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.
28 lines • 1.24 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Logout(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: ariaLabel
}, React.createElement("path", {
d: "M13.364 16.995a.909.909 0 1 1 1.818 0v2.728a1.819 1.819 0 0 1-1.818 1.818H3.818A1.819 1.819 0 0 1 2 19.723V4.268c0-1.003.814-1.818 1.818-1.818h9.546c1.003 0 1.818.815 1.818 1.818v2.728a.909.909 0 0 1-.91.908.91.91 0 0 1-.908-.909V4.723a.455.455 0 0 0-.455-.455H4.273a.455.455 0 0 0-.455.455v14.545c0 .251.204.455.455.455h8.636a.455.455 0 0 0 .455-.455v-2.273zm4.773-9.136l3.636 3.637c.303.303.303.757 0 .984l-3.636 3.638a.69.69 0 0 1-.53.226c-.456 0-.758-.303-.758-.757v-2.273c0-.076-.077-.152-.152-.152H8.591c-.606 0-1.136-.53-1.136-1.136 0-.606.53-1.136 1.136-1.212h8.106c.075 0 .152-.076.152-.152V8.39c0-.227.076-.378.227-.53a.732.732 0 0 1 1.06 0z"
}));
}