返回 AiToEarn
skeleton.tsx
根目录 / project / aitoearn-web / src / components / ui / skeleton.tsx
1 /**
2 * Skeleton - 骨架屏组件
3 * 用于内容加载时的占位显示
4 */
5
6 import { cn } from '@/utils/className'
7
8 function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
9 return <div className={cn('animate-pulse rounded-md bg-muted', className)} {...props} />
10 }
11
12 export { Skeleton }
13
13 lines Plain Text