Angular Components
Setproduct Design System
Change filter for code updates
HTML
TS
<div class="set-counter-horizontal">
<button (click)="increment(counterInput)"
color="primary"
mat-fab
mat-flat-fab
disabled="false">
<set-icon shape="chevron_left right"></set-icon>
</button>
<input #counterInput value="0" [disabled]="false"/>
<button (click)="decrement(counterInput)"
color="primary"
mat-fab
mat-flat-fab
disabled="false">
<set-icon shape="chevron_left left"></set-icon>
</button>
</div>