Files
zeroone/src/components/ui/dialog/DialogHeader.vue
KM 6e4dc5e9db init
Initial mock up of the app
2024-01-22 12:03:56 +01:00

16 lines
274 B
Vue

<script setup>
import { cn } from "@/lib/utils";
const props = defineProps({
class: { type: String, required: false },
});
</script>
<template>
<div
:class="cn('flex flex-col space-y-2 text-center sm:text-left', props.class)"
>
<slot />
</div>
</template>