mirror of
https://github.com/ZeroCatDev/ClassworksKVAdmin.git
synced 2025-10-22 03:23:10 +00:00
17 lines
304 B
Vue
17 lines
304 B
Vue
<script setup>
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
data-slot="alert-dialog-header"
|
|
:class="cn('flex flex-col gap-2 text-center sm:text-left', props.class)"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|