nts-ng2-components
Version:
Paquete de componentes para Angular2 desarrollado por NITSNETS.
23 lines (18 loc) • 583 B
HTML
<button
[disabled]="disabled || false"
[type]="type || 'button'"
[class]="color || ''"
[ngClass]="{
'with-icon': icon,
'with-icon-right': iconRight,
'only-icon': icon && (!label || !label.length),
'btn-large': size === 'large',
'btn-small': size === 'small'
}">
<nts-icon class="icon" *ngIf="icon" [icon]="icon" [size]="size || 'medium'"></nts-icon>
{{label}}
<span class="sublabel" *ngIf="sublabel">
{{sublabel}}
</span>
<nts-icon class="iconRight" *ngIf="iconRight" [icon]="iconRight" [size]="size || 'medium'"></nts-icon>
</button>