20 lines
355 B
HTML
20 lines
355 B
HTML
<button
|
|
class="smallBtn"
|
|
[ngStyle]="{
|
|
width: btnSize,
|
|
height: btnSize,
|
|
'background-color': btnBgColor,
|
|
'--btnBgHoverColor': btnBgHoverColor
|
|
}"
|
|
[disabled]="disable"
|
|
>
|
|
<img
|
|
[ngStyle]="{
|
|
width: imgSize,
|
|
height: imgSize,
|
|
'--filter': imgFilter
|
|
}"
|
|
[src]="'assets/img/' + imgSrc"
|
|
alt=""
|
|
/>
|
|
</button>
|