mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-11 04:19:31 +00:00
33 lines
680 B
Vue
33 lines
680 B
Vue
<script setup lang="ts">
|
|
import { computed } from "vue";
|
|
import {
|
|
ToastRoot,
|
|
type ToastRootEmits,
|
|
useForwardPropsEmits,
|
|
} from "radix-vue";
|
|
import { type ToastProps, toastVariants } from ".";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<ToastProps>();
|
|
|
|
const emits = defineEmits<ToastRootEmits>();
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props;
|
|
|
|
return delegated;
|
|
});
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<ToastRoot
|
|
v-bind="forwarded"
|
|
:class="cn(toastVariants({ variant }), props.class)"
|
|
@update:open="onOpenChange"
|
|
>
|
|
<slot />
|
|
</ToastRoot>
|
|
</template>
|