baseui
Version:
A React Component library implementing the Base design language
26 lines (24 loc) • 658 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.StyledRoot = void 0;
var _styles = require("../styles");
/*
Copyright (c) Uber Technologies, Inc.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
const StyledRoot = exports.StyledRoot = (0, _styles.styled)('div', ({
$theme
}) => ({
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
boxSizing: 'border-box',
maxWidth: '139px',
height: '48px',
padding: $theme.sizing.scale550
}));
StyledRoot.displayName = "StyledRoot";
StyledRoot.displayName = 'StyledRoot';