summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html
blob: 655364eefc0c6c6a935f3862f9a20339d1afc815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<i [ngClass]="[icons.clipboard, icons.large]"
   (click)="onClick()"
   class="text-primary ms-2"
   title="Copy to Clipboard"
   *ngIf="showIconOnly; else withButtonTpl"></i>

<ng-template #withButtonTpl>
  <button (click)="onClick()"
          type="button"
          class="btn btn-light"
          i18n-title
          title="Copy to Clipboard">
    <i [ngClass]="[icons.clipboard]"></i>
  </button>
</ng-template>