clustvirt/view/components/anchor.templ

16 lines
283 B
Plaintext
Raw Normal View History

package components
templ A(href string, text string) {
<a href={ templ.URL(href) }
class={
"after:content-link",
"after:w-3",
"after:h-3",
"after:inline-block",
"after:invert",
"text-base",
"text-morbius-100" }>
{ text }
</a>
}