mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-24 02:02:35 -04:00
15 lines
310 B
Vue
15 lines
310 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue';
|
|
import { cn } from '@/src/modules/shared/style/cn';
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class'];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="cn('flex flex-col gap-y-1.5 p-6', props.class)">
|
|
<slot />
|
|
</div>
|
|
</template>
|