Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1x | import { ChangeDetectionStrategy, Component } from '@angular/core';
/**
* Use while waiting for asynchronous tasks to complete.
*
* Source: https://github.com/n3r4zzurr0/svg-spinners/blob/main/svg-css/blocks-shuffle-3.svg
*/
@Component({
selector: 'app-spinner',
templateUrl: './spinner.component.svg',
styleUrl: './spinner.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class SpinnerComponent {}
|