11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
import { cn } from "@/lib/utils"
|
|
|
|
function Skeleton({
|
|
className,
|
|
...props
|
|
}) {
|
|
return (<div className={cn("animate-pulse rounded-md bg-gray-300", className)} {...props} />);
|
|
}
|
|
|
|
export { Skeleton }
|