18 lines
323 B
HTML
18 lines
323 B
HTML
|
<ng-template #icon>
|
||
|
<tui-avatar
|
||
|
size="xs"
|
||
|
[rounded]="true"
|
||
|
[avatarUrl]="'http://jpg.jpg'"
|
||
|
></tui-avatar>
|
||
|
</ng-template>
|
||
|
|
||
|
<button
|
||
|
tuiButton
|
||
|
type="button"
|
||
|
appearance="primary"
|
||
|
[icon]="icon"
|
||
|
class="tui-space_right-3 tui-space_bottom-3"
|
||
|
>
|
||
|
<ng-content></ng-content>
|
||
|
</button>
|