add empty component and poilsh styles

This commit is contained in:
pa
2026-01-22 19:05:35 +09:00
parent 1514012c4c
commit 3c37071011
22 changed files with 296 additions and 65 deletions

View File

@@ -0,0 +1,20 @@
<script setup>
import { cn } from '@/lib/utils';
defineProps({
class: { type: null, required: false }
});
</script>
<template>
<p
data-slot="empty-description"
:class="
cn(
'text-muted-foreground [&>a:hover]:text-primary text-sm/relaxed [&>a]:underline [&>a]:underline-offset-4',
$attrs.class ?? ''
)
">
<slot />
</p>
</template>