]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / copy2clipboard-button / copy2clipboard-button.component.html
1 <i [ngClass]="[icons.clipboard, icons.large]"
2 (click)="onClick()"
3 class="text-primary ms-2"
4 title="Copy to Clipboard"
5 *ngIf="showIconOnly; else withButtonTpl"></i>
6
7 <ng-template #withButtonTpl>
8 <button (click)="onClick()"
9 type="button"
10 class="btn btn-light"
11 i18n-title
12 title="Copy to Clipboard">
13 <i [ngClass]="[icons.clipboard]"></i>
14 </button>
15 </ng-template>