import React from "react"; const SkeletonCell = ({ width = "100%", height = 20, className = "", style = {}, }) => (
); export const DocumentTableSkeleton = ({ rows = 5 }) => { return ( {[...Array(rows)].map((_, idx) => ( {/* Name */} {/* Document Type */} {/* Uploaded By (Avatar + Name) */} {/* Uploaded on */} {/* Status */} ))}
Name Document Type Uploaded By Uploaded on Status
); };