Files
website/src/lib/components/shared/github-stats.svelte
Jesse Winton 733dceb1c1 update icon
2025-04-08 16:56:12 -04:00

23 lines
544 B
Svelte

<script lang="ts">
import { SOCIAL_STATS } from '$lib/constants';
import { Icon, InlineTag, Button } from '$lib/components/ui';
type Props = {
class?: string;
};
const { class: className }: Props = $props();
</script>
<Button
href={SOCIAL_STATS.GITHUB.LINK}
target="_blank"
rel="noopener noreferrer"
class={className}
variant="secondary"
>
<Icon name="star" aria-hidden="true" />
<span class="text">Star on GitHub</span>
<InlineTag>{SOCIAL_STATS.GITHUB.STAT}</InlineTag>
</Button>