clustvirt/view/components/anchor.templ
Matthew Stobbs 9c35be1fcf really liking templ
- made multiple components for reuse in templ
- going to start on actual data displaying templates
2024-03-14 21:56:49 -06:00

16 lines
283 B
Plaintext

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>
}