mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 07:21:20 +00:00
18 lines
445 B
Svelte
18 lines
445 B
Svelte
<script lang="ts">
|
|
import { cn } from '$lib/utils';
|
|
import { badgeVariants, type Variant } from '.';
|
|
|
|
let className: string | undefined | null = undefined;
|
|
export let href: string | undefined = undefined;
|
|
export let variant: Variant = 'default';
|
|
export { className as class };
|
|
</script>
|
|
|
|
<svelte:element
|
|
this={href ? 'a' : 'span'}
|
|
{href}
|
|
class={cn(badgeVariants({ variant, className }))}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</svelte:element>
|