19 lines
409 B
Vue
19 lines
409 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import type { AlertVariants } from '.'
|
|
import { cn } from '~/lib/utils'
|
|
|
|
import { alertVariants } from '.'
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class']
|
|
variant?: AlertVariants['variant']
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="cn(alertVariants({ variant }), props.class)" role="alert">
|
|
<slot />
|
|
</div>
|
|
</template>
|