22 lines
670 B
Vue
22 lines
670 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = withDefaults(defineProps<{
|
|
class?: HTMLAttributes['class']
|
|
size?: 'default' | 'sm'
|
|
}>(), {
|
|
size: 'default',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
data-slot="card"
|
|
:data-size="size"
|
|
:class="cn('bg-card text-card-foreground ring-foreground/5 dark:ring-foreground/10 gap-6 overflow-hidden rounded-4xl py-6 text-sm shadow-md ring-1 has-[>img:first-child]:pt-0 data-[size=sm]:gap-4 data-[size=sm]:py-4 *:[img:first-child]:rounded-t-4xl *:[img:last-child]:rounded-b-4xl group/card flex flex-col', props.class)"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|