mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-09-03 12:12:39 +00:00
10 lines
391 B
HTML
10 lines
391 B
HTML
{{- /* Diagram copy button */ -}}
|
|
{{- $label := .Label | default "Copy Diagram code" -}}
|
|
{{- $iconCopy := dict "Class" "fa-regular fa-clone" -}}
|
|
{{- $iconCheck := dict "Class" "fa-solid fa-check text-success" -}}
|
|
|
|
<div class="diagram-copy-btn" aria-label="{{ $label }}" role="button">
|
|
{{- $iconCopy | partial "plugin/icon.html" -}}
|
|
{{- $iconCheck | partial "plugin/icon.html" -}}
|
|
</div>
|