UNPKG

ngx-eagle

Version:

UI component infrastructure and Design components for mobile and desktop Angular web applications.

14 lines (12 loc) 229 B
import {Component} from '@angular/core'; @Component({ selector: 'ngx-card', standalone: true, template: ` <ng-content></ng-content>`, host: { class: 'ngx-card', } }) export class CardComponent { }