ucap-doc/documents/업무/6월/2째주/backup/document-viewer.component.html
Park Byung Eun 7dcec1aaad sync
2020-06-09 09:12:32 +09:00

30 lines
790 B
HTML

<div class="ucap-image-viewer-container">
<mat-toolbar class="bg-primary-dark">
<span>Third Line</span>
<span class="ucap-image-viewer-spacer"></span>
<mat-icon
class="example-icon"
aria-hidden="false"
aria-label="Example heart icon"
>favorite</mat-icon
>
<mat-icon
class="example-icon"
aria-hidden="false"
aria-label="Example delete icon"
>delete</mat-icon
>
</mat-toolbar>
<div style="position: relative;">
<div
*ngIf="fileDownloadItem && fileDownloadItem.downloadingProgress$"
style="position: absolute; width: 100%;"
>
<mat-progress-bar
mode="determinate"
[value]="fileDownloadItem.downloadingProgress$ | async"
></mat-progress-bar>
</div>
</div>
</div>