UNPKG

nts-ng2-components

Version:

Paquete de componentes para Angular2 desarrollado por NITSNETS.

10 lines (8 loc) 293 B
import { Input } from '@angular/core'; import { NtsBaseComponent } from './base.component'; export abstract class NtsButtonBaseComponent extends NtsBaseComponent { @Input() icon: string; @Input() iconRight: string; @Input() sublabel: string; @Input() size: string; }