"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LogStatusbarItem = exports.LogStatusbar = void 0; var _eui = require("@elastic/eui"); var _common = require("@kbn/kibana-react-plugin/common"); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const LogStatusbar = (0, _common.euiStyled)(_eui.EuiFlexGroup).attrs(() => ({ alignItems: 'center', gutterSize: 'none', justifyContent: 'flexEnd' }))` padding: ${props => props.theme.eui.euiSizeS}; border-top: ${props => props.theme.eui.euiBorderThin}; max-height: 48px; min-height: 48px; background-color: ${props => props.theme.eui.euiColorEmptyShade}; flex-direction: row; `; exports.LogStatusbar = LogStatusbar; const LogStatusbarItem = _eui.EuiFlexItem; exports.LogStatusbarItem = LogStatusbarItem;