mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 16:30:13 +01:00
13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
|
|
import {Component, ViewEncapsulation, Input} from 'angular2/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'ba-card',
|
||
|
|
styles: [require('./baCard.scss')],
|
||
|
|
template: require('./baCard.html'),
|
||
|
|
encapsulation: ViewEncapsulation.None
|
||
|
|
})
|
||
|
|
export class BaCard {
|
||
|
|
@Input() title:String;
|
||
|
|
@Input() baCardClass:String;
|
||
|
|
}
|