import type { FC } from 'react'; import { cn } from '../../lib/utils'; interface SkeletonProps { className?: string; count?: number; } export const Skeleton: FC = ({ className, count = 1 }) => { return (
{Array.from({ length: count }).map((_, i) => (
))}
); }; export const SkeletonCard: FC<{ lines?: number; className?: string }> = ({ lines = 3, className, }) => { return (
{Array.from({ length: lines }).map((_, i) => ( ))}
); }; export const SkeletonStat: FC = () => (
); export default Skeleton;