19 lines
289 B
Vue
19 lines
289 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps({
|
|
class: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
:class="cn('flex flex-col space-y-2 text-center sm:text-left', props.class)"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|