Update AppImage

This commit is contained in:
MacRimi
2025-09-28 23:05:59 +02:00
parent 38569ff7fc
commit a8e7119b4a
84 changed files with 6024 additions and 2204 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 }