dabubble/src/app/shared/components/small-btn/small-btn.component.html
2024-06-15 17:44:19 +02:00

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>