Files
Picsur/frontend/src/app/components/copy-field/copy-field.component.html
2022-04-18 14:46:52 +02: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>