aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/tiles/children/tile-footer.component.ts
blob: 519c5baf696543d32c274f50b3836ee716f22282 (plain)
1
2
3
4
5
6
7
8
9
10
import { Component, HostBinding } from '@angular/core';

@Component({
    selector: 'sdc-tile-footer',
    template: '<ng-content></ng-content>'
})

export class TileFooterComponent {
    @HostBinding('class') classes = 'sdc-tile-footer';
}