mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-30 20:23:46 +02:00
14 lines
271 B
Vue
14 lines
271 B
Vue
<script setup>
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div data-slot="card-content" :class="cn('px-6', props.class)">
|
|
<slot />
|
|
</div>
|
|
</template>
|