mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 12:57:48 +00:00
23 lines
544 B
Svelte
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 icon="star" aria-hidden="true" />
|
|
<span class="text">Star on GitHub</span>
|
|
<InlineTag>{SOCIAL_STATS.GITHUB.STAT}</InlineTag>
|
|
</Button>
|