mirror of
https://github.com/faiztyanirh/clqms-shadcn-v1.git
synced 2026-04-23 17:49:28 +07:00
45 lines
1.4 KiB
Svelte
45 lines
1.4 KiB
Svelte
<script module>
|
|
import { tv } from "tailwind-variants";
|
|
|
|
export const badgeVariants = tv({
|
|
base: "focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive inline-flex w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-full border px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-[color,box-shadow] focus-visible:ring-[3px] [&>svg]:pointer-events-none [&>svg]:size-3",
|
|
variants: {
|
|
variant: {
|
|
default:
|
|
"bg-primary text-primary-foreground [a&]:hover:bg-primary/90 border-transparent",
|
|
secondary:
|
|
"bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 border-transparent",
|
|
destructive:
|
|
"bg-destructive [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/70 border-transparent text-white",
|
|
outline: "text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: "default",
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<script>
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
href,
|
|
class: className,
|
|
variant = "default",
|
|
children,
|
|
...restProps
|
|
} = $props();
|
|
</script>
|
|
|
|
<svelte:element
|
|
this={href ? "a" : "span"}
|
|
bind:this={ref}
|
|
data-slot="badge"
|
|
{href}
|
|
class={cn(badgeVariants({ variant }), className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</svelte:element> |