mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-23 08:43:50 +02:00
21 lines
450 B
Vue
21 lines
450 B
Vue
<script setup>
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
data-slot="alert-description"
|
|
:class="
|
|
cn(
|
|
'text-muted-foreground col-start-2 grid justify-items-start gap-1 text-sm [&_p]:leading-relaxed',
|
|
props.class
|
|
)
|
|
">
|
|
<slot />
|
|
</div>
|
|
</template>
|