travel-steps/summer2024-frontend/src/components/ui/card/Card.vue
Nicolas Froger 2647ac244d
frontend: run lint
Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
2024-07-27 02:10:59 +02:00

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>