UNPKG

@ucloud-fe/react-components

Version:
12 lines (11 loc) 358 B
import { HTMLAttributes } from 'react'; interface SkeletonProps { /** 是否开启动画 */ animated?: boolean; /** 章节的行数 */ rows?: number; /** 宽度 */ width?: string | number; } declare const Skeleton: ({ animated, rows, ...rest }: SkeletonProps & HTMLAttributes<HTMLDivElement>) => JSX.Element; export default Skeleton;