classify web
This commit is contained in:
10
components/ui/skeleton.jsx
Normal file
10
components/ui/skeleton.jsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
function Skeleton({
|
||||
className,
|
||||
...props
|
||||
}) {
|
||||
return (<div className={cn("animate-pulse rounded-md bg-gray-300", className)} {...props} />);
|
||||
}
|
||||
|
||||
export { Skeleton }
|
||||
Reference in New Issue
Block a user