13 lines
270 B
Vue
13 lines
270 B
Vue
<script setup>
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false }
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="cn('rounded-lg border bg-card text-card-foreground shadow-sm', props.class)">
|
|
<slot />
|
|
</div>
|
|
</template>
|