const SkeletonLine = ({ height = 20, width = "100%", className = "" }) => (
); export const OrgCardSkeleton = () => { return (
{[...Array(1)].map((_, idx) => (
{/* Left: Logo/avatar placeholder */}
{/* Right: Info section */}
{/* Org name */} {/* SPRID */}
{/* Address */}
))}
); }; export const OrgDetailsSkeleton = () => { return (
{/* Header */}
{/* Logo + Name */}
{/* Status Badge */}
{/* Section Title */}
{/* Contact Person */}
{/* Contact Number */}
{/* Email */}
{/* SPRID */}
{/* Employees */}
{/* Address */}
{/* Section Title 2 */}
); };