shadcn-vue/apps/www/src/lib/registry/default/ui/sheet/SheetFooter.vue
2023-09-02 14:44:45 +01:00

19 lines
305 B
Vue

<script setup lang="ts">
import { cn } from '@/lib/utils'
const props = defineProps<{ class?: string }>()
</script>
<template>
<div
:class="
cn(
'flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2',
props.class,
)
"
>
<slot />
</div>
</template>