]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/channel/avatar.component.ts
ensure menu footer respects spacing across translations
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / channel / avatar.component.ts
1 import { Component, Input } from '@angular/core'
2 import { VideoDetails } from '../video/video-details.model'
3
4 @Component({
5 selector: 'avatar-channel',
6 templateUrl: './avatar.component.html',
7 styleUrls: [ './avatar.component.scss' ]
8 })
9 export class AvatarComponent {
10 @Input() video: VideoDetails
11 }