mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-25 11:48:49 +01:00
15 lines
383 B
TypeScript
15 lines
383 B
TypeScript
import {Component, ViewEncapsulation, Input} from '@angular/core';
|
|
|
|
import {BaCardBlur} from './baCardBlur.directive';
|
|
|
|
@Component({
|
|
selector: 'ba-card',
|
|
styles: [require('./baCard.scss')],
|
|
directives: [BaCardBlur],
|
|
template: require('./baCard.html'),
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class BaCard {
|
|
@Input() title:String;
|
|
@Input() baCardClass:String;
|
|
}
|