11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
<#macro kw component="a" rest...>
|
|
<${component}
|
|
class="text-primary-600 hover:text-primary-500"
|
|
<#list rest as attrName, attrValue>
|
|
${attrName}="${attrValue}"
|
|
</#list>
|
|
>
|
|
<#nested>
|
|
</${component}>
|
|
</#macro>
|