Files

18 lines
317 B
Vue
Raw Permalink Normal View History

2025-10-20 08:57:51 +02:00
<script setup lang="ts">
2026-02-17 10:35:03 +01:00
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
2025-10-20 08:57:51 +02:00
const props = defineProps<{
2026-02-17 10:35:03 +01:00
class?: HTMLAttributes["class"]
2025-10-20 08:57:51 +02:00
}>()
</script>
<template>
<div
data-sidebar="footer"
2026-02-17 10:35:03 +01:00
:class="cn('flex flex-col gap-2 p-2', props.class)"
2025-10-20 08:57:51 +02:00
>
<slot />
</div>
</template>