2023-12-20 07:53:50 -06:00
|
|
|
{{ $icon := .Get "icon"}}
|
2023-12-20 10:02:45 -06:00
|
|
|
<div class="flex mt-2">
|
2023-12-20 09:01:03 -06:00
|
|
|
<span
|
|
|
|
class="rounded-full bg-primary-500 dark:bg-primary-300 text-neutral-50 dark:text-neutral-700 px-1.5 py-[1px] text-xs font-normal"
|
|
|
|
>
|
2023-12-20 09:01:25 -06:00
|
|
|
<span class="flex flex-row items-center">
|
2023-12-20 09:01:03 -06:00
|
|
|
{{if $icon}}
|
|
|
|
<span class="mr-1">{{ partial "icon" $icon }}</span>
|
2023-12-20 09:01:25 -06:00
|
|
|
{{ end }}
|
|
|
|
<span> {{- .Inner | markdownify -}} </span>
|
2023-12-20 07:53:50 -06:00
|
|
|
</span>
|
|
|
|
</span>
|
2023-12-20 10:02:45 -06:00
|
|
|
</div>
|