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
23 lines (20 loc) • 605 B
JavaScript
import { style } from '@primeuix/styles/progressbar';
import BaseStyle from '@primevue/core/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
}];
},
value: 'p-progressbar-value',
label: 'p-progressbar-label'
};
var ProgressBarStyle = BaseStyle.extend({
name: 'progressbar',
style: style,
classes: classes
});
export { ProgressBarStyle as default };
//# sourceMappingURL=index.mjs.map