16 lines
568 B
HTML
16 lines
568 B
HTML
<div class="top">
|
|
<input
|
|
type="text"
|
|
[placeholder]="placeholder===undefined?'':placeholder"
|
|
required=""
|
|
[style.border]="hasError||notANumber? '2px dashed red' : ''"
|
|
[(ngModel)]="value"
|
|
(input)="onChangeValue($event.target.value)" />
|
|
<button class="eye-button-2 unselectable" tabindex="-1" (click)="onDecrement()" type="submit">
|
|
<i class="material-icons">arrow_back_ios</i>
|
|
</button>
|
|
<button class="eye-button unselectable" tabindex="-1" (click)="onIncrement()" type="submit">
|
|
<i class="material-icons">arrow_forward_ios</i>
|
|
</button>
|
|
</div>
|