UNPKG

@itwin/itwinui-layouts-react

Version:

iTwinUI package that provides React components for most common layouts

13 lines (12 loc) 764 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ import React from 'react'; import cx from 'classnames'; export var BottomBar = function (props) { var className = props.className, style = props.style, _a = props.children, children = _a === void 0 ? false : _a; return (React.createElement("div", { className: cx('iui-layouts-page-bottom-bar', className), style: style }, children)); }; BottomBar.displayName = 'PageLayout.BottomBar'; export default BottomBar;