funky-framadate-front/src/app/shared/components/ui/copy-text/copy-text.component.html

8 lines
282 B
HTML
Raw Normal View History

2020-11-13 09:38:42 +01:00
<button (click)="copy()" class="btn btn--primary btn--outline" id="copyLink">
<i class="fa fa-copy" aria-hidden="true"></i>
2021-02-09 22:16:02 +01:00
<span *ngIf="displayLabelButton">
{{ 'admin.copy_link' | translate }}
</span>
2020-11-13 09:38:42 +01:00
<span *ngIf="displayContentToCopy"> " {{ textToCopy }}" </span>
</button>