UNPKG

baked-recipe-admin

Version:

Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.

28 lines (25 loc) 592 B
/** * * ProgressSpinner is a process status indicator. * * [Live Demo](https://www.primevue.org/progressspinner) * * @module progressspinnerstyle * */ import type { BaseStyle } from '@primevue/core/base/style'; export enum ProgressSpinnerClasses { /** * Class name of the root element */ root = 'p-progressspinner', /** * Class name of the spin element */ spin = 'p-progressspinner-spin', /** * Class name of the circle element */ circle = 'p-progressspinner-circle' } export interface ProgressSpinnerStyle extends BaseStyle {}