16 lines
283 B
Plaintext
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>
|
||
|
}
|