import type { CSSProperties } from "react"; interface SkeletonProps { width?: string | number; height?: string | number; borderRadius?: string | number; className?: string; style?: CSSProperties; } export function Skeleton({ width, height = 16, borderRadius = 6, className = "", style }: SkeletonProps) { return (
); } export function SkeletonCard({ className = "" }: { className?: string }) { return ( ); } export function SkeletonList({ count = 4, className = "" }: { count?: number; className?: string }) { return (