nts-ng2-components
Version:
Paquete de componentes para Angular2 desarrollado por NITSNETS.
36 lines (28 loc) • 441 B
Markdown
## Button
``` ui / nts-button ```
parent: ``` base / button-base```
Botón simple
### Contract
Parent contract:
```typescript
//INPUTS
color: NtsColor;
icon: string;
iconRight: string;
label: string;
sublabel: string;
size: string;
disabled: boolean = false;
```
### Usage
```html
<nts-button
color="primary"
icon="close"
iconRight="caret"
label="My example button"
sublabel="My mublabel"
>
</nts-button>
```