Files
Picsur/frontend/src/app/components/copyfield/copyfield.component.html
rubikscraft 0ac46696c8 reorganizing
2022-03-03 22:48:03 +01:00

8 lines
296 B
HTML

<mat-form-field appearance="outline" color="accent">
<mat-label>{{ label }}</mat-label>
<input matInput [value]="value" readonly="readonly" />
<button mat-icon-button matSuffix [attr.aria-label]="'Copy'" (click)="copy()">
<mat-icon>content_copy</mat-icon>
</button>
</mat-form-field>