mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 04:22:07 +00:00
15 lines
350 B
Svelte
15 lines
350 B
Svelte
<script lang="ts">
|
|
import { Icon, Button } from '$lib/components/ui';
|
|
|
|
type Props = {
|
|
class?: string;
|
|
};
|
|
|
|
const { class: className }: Props = $props();
|
|
</script>
|
|
|
|
<Button variant="secondary" class={className} href="https://appwrite.io/discord">
|
|
<Icon name="discord" />
|
|
<span class="text">Join Discord</span>
|
|
</Button>
|