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
28 lines (25 loc) • 560 B
TypeScript
/**
*
* ProgressBar is a process status indicator.
*
* [Live Demo](https://www.primevue.org/progressbar)
*
* @module progressbarstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum ProgressBarClasses {
/**
* Class name of the root element
*/
root = 'p-progressbar',
/**
* Class name of the value element
*/
value = 'p-progressbar-value',
/**
* Class name of the label element
*/
label = 'p-progressbar-label'
}
export interface ProgressBarStyle extends BaseStyle {}