You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
554 B
HTML
21 lines
554 B
HTML
<!--
|
|
<div [ngStyle]="style" class="custom-button ">
|
|
<img [src]="icon" [ngClass]="direction == 'rtl'? 'icon-right' : 'icon-left' " >
|
|
<p [ngClass]="direction == 'rtl'? 'title-right' : 'title-left' ">{{title}}</p>
|
|
<img src="assets/icon/arrow.png" [ngClass]="direction == 'rtl' ? 'arrow-right' : 'arrow-left' ">
|
|
</div>
|
|
|
|
-->
|
|
|
|
<!--
|
|
|
|
<div (click)="onClicked()" [ngStyle]="style" class="custom-button">
|
|
<img [src]="icon" class="icon" >
|
|
<p class="title">{{title}}</p>
|
|
</div>
|
|
|
|
<div class="overlay" modal *ngIf="disabled">
|
|
</div>
|
|
|
|
|
|
--> |