20 lines
528 B
Vue
20 lines
528 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
import { ToastTitle, type ToastTitleProps } from 'reka-ui'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<ToastTitleProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<ToastTitle v-bind="delegatedProps" :class="cn('text-sm font-semibold [&+div]:text-xs', props.class)">
|
|
<slot />
|
|
</ToastTitle>
|
|
</template>
|