import { style } from '../wxs/style';
function barStyle(data) {
var newData = {
'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
height: data.height + 'px'
};
if (data.zIndex) {
newData['z-index'] = data.zIndex;
}
return style(newData);
}
export { barStyle };