TomatitoToho commited on
Commit
5564557
·
verified ·
1 Parent(s): 7eea3e7

Upload src/components/ui/skeleton.tsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. src/components/ui/skeleton.tsx +13 -0
src/components/ui/skeleton.tsx ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { cn } from "@/lib/utils"
2
+
3
+ function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
4
+ return (
5
+ <div
6
+ data-slot="skeleton"
7
+ className={cn("bg-accent animate-pulse rounded-md", className)}
8
+ {...props}
9
+ />
10
+ )
11
+ }
12
+
13
+ export { Skeleton }