mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
10 lines
374 B
XML
10 lines
374 B
XML
{{- /*
|
|
This template applies an ID to an SVG from the Heroicons set to be used with `<use>` element.
|
|
*/ -}}
|
|
{{- $match := "^\\s*<svg (.*)?>" }}
|
|
{{- $name := default .id .name }}
|
|
{{- $icon := resources.Get (printf "svg/heroicons/24/solid/%s.svg" .id) }}
|
|
{{- $replaceWith := printf `<svg id="%s" ${1}>` $name }}
|
|
|
|
{{- replaceRE $match $replaceWith $icon.Content | safeHTML -}}
|