auto-save 2026-04-13 18:59 (+1)

This commit is contained in:
2026-04-13 19:00:17 +08:00
parent c35c1852af
commit 4bdc14f96c
88 changed files with 11213 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { cn } from '@/lib/utils'
function Skeleton({ className, ...props }: React.ComponentProps<'div'>) {
return (
<div
data-slot="skeleton"
className={cn('bg-accent animate-pulse rounded-md', className)}
{...props}
/>
)
}
export { Skeleton }