PeerTube/client/src/app/shared/misc/small-loader.component.ts

12 lines
229 B
TypeScript

import { Component, Input } from '@angular/core'
@Component({
selector: 'my-small-loader',
styleUrls: [ ],
templateUrl: './small-loader.component.html'
})
export class SmallLoaderComponent {
@Input() loading: boolean
}