@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.
39 lines (33 loc) • 2.08 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Logout;
var React = _interopRequireWildcard(require("react"));
var _Icon = _interopRequireDefault(require("../Icon"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
/* eslint-disable */
function Logout(props) {
var color = props.color,
size = props.size,
customColor = props.customColor,
className = props.className,
dataTest = props.dataTest,
ariaHidden = props.ariaHidden,
ariaLabel = props.ariaLabel,
reverseOnRtl = props.reverseOnRtl;
return React.createElement(_Icon.default, {
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"
}));
}