unoffical wafrn mirror wafrn.net
atproto social-network activitypub
at angular21 13 lines 420 B view raw
1import { Component, Input } from '@angular/core' 2import { MatCardModule } from '@angular/material/card' 3import { MatProgressSpinnerModule } from '@angular/material/progress-spinner' 4 5@Component({ 6 selector: 'app-loader', 7 imports: [MatCardModule, MatProgressSpinnerModule], 8 templateUrl: './loader.component.html', 9 styleUrl: './loader.component.scss' 10}) 11export class LoaderComponent { 12 @Input() text = 'Loading' 13}