mirror of
https://github.com/aljazceru/hypergolic.git
synced 2025-12-17 05:24:21 +01:00
18 lines
494 B
Svelte
18 lines
494 B
Svelte
<script lang="ts">
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
import { type Variant, alertVariants } from "./index.js";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
type $$Props = HTMLAttributes<HTMLDivElement> & {
|
|
variant?: Variant;
|
|
};
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export let variant: $$Props["variant"] = "default";
|
|
export { className as class };
|
|
</script>
|
|
|
|
<div class={cn(alertVariants({ variant }), className)} {...$$restProps} role="alert">
|
|
<slot />
|
|
</div>
|