UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular 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 PrimeB

41 lines (40 loc) 991 B
import { BaseStyle } from 'primeng/base'; import * as i0 from "@angular/core"; export declare class ProgressSpinnerStyle extends BaseStyle { name: string; theme: ({ dt }: { dt: any; }) => string; classes: { root: string; spin: string; circle: string; }; static ɵfac: i0.ɵɵFactoryDeclaration<ProgressSpinnerStyle, never>; static ɵprov: i0.ɵɵInjectableDeclaration<ProgressSpinnerStyle>; } /** * * ProgressSpinner is a process status indicator. * * [Live Demo](https://www.primeng.org/progressspinner) * * @module progressspinnerstyle * */ export declare 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 { }