@itwin/itwinui-layouts-react
Version:
iTwinUI package that provides React components for most common layouts
20 lines (19 loc) • 1.14 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.BottomBar = void 0;
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
var react_1 = __importDefault(require("react"));
var classnames_1 = __importDefault(require("classnames"));
var BottomBar = function (props) {
var className = props.className, style = props.style, _a = props.children, children = _a === void 0 ? false : _a;
return (react_1.default.createElement("div", { className: (0, classnames_1.default)('iui-layouts-page-bottom-bar', className), style: style }, children));
};
exports.BottomBar = BottomBar;
exports.BottomBar.displayName = 'PageLayout.BottomBar';
exports.default = exports.BottomBar;