interface SkeletonProps { width?: string height?: string radius?: string className?: string } export default function Skeleton({ width = '100%', height = '1rem', radius = '8px', className = '', }: SkeletonProps) { return (