- Card 新增 tone(panel/card/soft)/flat/interactive;cardClass 兼容旧字符串签名 - Button 新增 link(coral 文字链) 变体与 lg 尺寸 - 新增原子件 Eyebrow(统一眉题) / StatusDot(状态点·读屏可见) / Skeleton(motion-safe 占位) / Meter(进度条·progressbar) - PageHeader/SectionHeader 用 display/title 字阶 + Eyebrow 眉题
19 lines
416 B
TypeScript
19 lines
416 B
TypeScript
import { cn } from "@/lib/ui/variants";
|
||
|
||
interface SkeletonProps {
|
||
className?: string;
|
||
}
|
||
|
||
// 加载占位:柔和线条底 + motion-safe 脉冲(尊重 prefers-reduced-motion)。
|
||
export function Skeleton({ className }: SkeletonProps) {
|
||
return (
|
||
<span
|
||
aria-hidden="true"
|
||
className={cn(
|
||
"block rounded-md bg-line/60 motion-safe:animate-pulse",
|
||
className,
|
||
)}
|
||
/>
|
||
);
|
||
}
|