UNPKG

@kv-systems/ng-packagr

Version:

Compile and package Angular libraries in Angular Package Format (APF)

20 lines (18 loc) 315 B
import { Component, Input } from '@angular/core'; @Component({ standalone: false, selector: 'ng-component', template: '<h1>{{title}}</h1>', styles: [ ` $primary: green; body { color: $primary; } `, ], }) export class AngularComponent { @Input() title = 'Angular'; }