keycloak-themes/keyman/old.account/components/molecules/username.ftl
2024-10-03 16:23:01 -06:00

15 lines
404 B
Text

<#import "/assets/icons/arrow-top-right-on-square.ftl" as icon>
<#import "/components/atoms/link.ftl" as link>
<#macro kw linkHref="" linkTitle="" name="">
<div class="flex items-center justify-center mb-4 space-x-2">
<span class="font-medium">${name}</span>
<@link.kw
color="primary"
href=linkHref
title=linkTitle
>
<@icon.kw />
</@link.kw>
</div>
</#macro>