Files
stream.ui/src/components/ui/form/Card.vue
2026-02-05 14:44:54 +07:00

17 lines
305 B
Vue

<script setup lang="ts">
interface CardProps {
cardClass?: string;
}
defineProps<CardProps>();
</script>
<template>
<div :class="['bg-white rounded-xl shadow-sm border border-gray-200 overflow-hidden', cardClass]">
<slot name="header" />
<div>
<slot />
</div>
</div>
</template>