blog/frontend/src/lib/common/framework/ui/NavbarAction.svelte
SquidSpirit eb4b2f4d6a
Some checks failed
PR Title Check / pr-title-check (pull_request) Successful in 13s
Frontend CI / build (push) Failing after 44s
BLOG-58 refactor: remove nextjs code
2025-07-23 05:19:36 +08:00

18 lines
330 B
Svelte

<script lang="ts">
let {
label,
link,
isSelected
}: {
label: string;
link: string;
isSelected: boolean;
} = $props();
</script>
<div class="rounded px-1.5 {isSelected ? 'bg-blue-600' : 'bg-transparent'}">
<a class="font-extrabold {isSelected ? 'text-white' : 'text-gray-800'}" href={link}>
{label}
</a>
</div>