import React from "react"; const SkeletonLine = ({ height = 20, width = "100%", className = "" }) => (
); export const PaymentHistorySkeleton = ({ count = 2 }) => { return (
{[...Array(count)].map((_, idx) => (
{/* Top Row: Date + Amount */}
{/* Date */} {/* Amount */}
{/* Transaction ID */}
{/* Received By (Avatar + Name) */}
{/* Avatar */} {/* Name */}
))}
); };