shadcn-vue/apps/www/.vitepress/theme/components/PageAction.vue
2024-11-20 00:15:52 +08:00

15 lines
241 B
Vue

<script setup lang="ts">
import { cn } from '@/lib/utils'
</script>
<template>
<section
:class="cn(
'flex w-full items-center justify-start gap-2 py-2',
$attrs.class ?? '',
)"
>
<slot />
</section>
</template>