Get started   Components   Icons   What's New
  Get a License
⚡️New Release! Material X components for Angular⚡ view demo
Button Appearance
Direction
Color
Disabled
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>