shadcn-vue/apps/www/.vitepress/theme/components/LinkedCard.vue
2023-09-18 15:16:32 +08:00

10 lines
289 B
Vue

<script setup lang="ts">
import { cn } from '@/lib/utils'
</script>
<template>
<a :class="cn('flex w-full flex-col items-center rounded-xl border bg-card p-6 text-card-foreground shadow transition-colors hover:bg-muted/50 sm:p-10', $attrs.class ?? '')">
<slot />
</a>
</template>