mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-16 13:25:13 +00:00
13 lines
365 B
HTML
13 lines
365 B
HTML
<!-- Button -->
|
|
<button
|
|
mat-icon-button
|
|
[matTooltip]="tooltip || 'Toggle Fullscreen'"
|
|
(click)="toggleFullscreen()">
|
|
<ng-container [ngTemplateOutlet]="iconTpl || defaultIconTpl"></ng-container>
|
|
</button>
|
|
|
|
<!-- Default icon -->
|
|
<ng-template #defaultIconTpl>
|
|
<mat-icon [svgIcon]="'heroicons_outline:arrows-pointing-out'"></mat-icon>
|
|
</ng-template>
|