primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
21 lines (18 loc) • 576 B
JavaScript
import BaseStyle from 'primevue/base/style';
var classes = {
root: function root(_ref) {
var instance = _ref.instance;
return ['p-progressbar p-component', {
'p-progressbar-determinate': instance.determinate,
'p-progressbar-indeterminate': instance.indeterminate
}];
},
container: 'p-progressbar-indeterminate-container',
value: 'p-progressbar-value p-progressbar-value-animate',
label: 'p-progressbar-label'
};
var ProgressBarStyle = BaseStyle.extend({
name: 'progressbar',
classes: classes
});
export { ProgressBarStyle as default };