aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/misc/small-loader.component.ts
blob: 191877f141643e88c21bd840760073e03ce0718c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { Component, Input } from '@angular/core'

@Component({
  selector: 'my-small-loader',
  styleUrls: [ ],
  templateUrl: './small-loader.component.html'
})

export class SmallLoaderComponent {
  @Input() loading: boolean
}