19 lines
324 B
TypeScript
19 lines
324 B
TypeScript
import {Component, Input, OnInit} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-card',
|
|
templateUrl: './card.component.html',
|
|
styleUrls: ['./card.component.less']
|
|
})
|
|
export class CardComponent implements OnInit {
|
|
@Input() padding = true;
|
|
@Input() heading: string;
|
|
|
|
constructor() {
|
|
}
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|