import React from 'react'; interface SkeletonProps { count?: number; height?: string; width?: string; borderRadius?: string; className?: string; style?: React.CSSProperties; } export const SkeletonLoader: React.FC = ({ count = 1, height = '140px', width = '100%', borderRadius = '14px', className = '', style = {} }) => { return (
{Array.from({ length: count }).map((_, i) => (
))}
); };