Files
L-Ami-Fiduciaire/resources/js/components/ui/item/ItemFooter.vue

18 lines
346 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<div
data-slot="item-footer"
:class="cn('flex basis-full items-center justify-between gap-2', props.class)"
>
<slot />
</div>
</template>