fundamental-ngx
Version:
SAP Fiori Fundamentals, implemented in Angular
14 lines (13 loc) • 352 B
TypeScript
/**
* The component that represents a loading spinner.
*
* ```html
* <fd-loading-spinner [loading]="true"></fd-loading-spinner>
* ```
*/
export declare class LoadingSpinnerComponent {
/** Whether to display the loading indicator animation. */
loading: boolean;
/** Aria label for the 'loading' spinner. */
loadingLabel: string;
}