@jdcfe/yep-react
Version:
一套移动端的React组件库
18 lines (17 loc) • 471 B
TypeScript
import * as React from 'react';
declare const Skeleton: React.FunctionComponent<SkeletonProps>;
export interface SkeletonProps {
animate?: boolean;
speed?: number;
className?: string;
width?: number;
height?: number;
preserveAspectRatio?: string;
primaryColor?: string;
secondaryColor?: string;
primaryOpacity?: number;
secondaryOpacity?: number;
style?: React.CSSProperties;
uniquekey?: string;
}
export default Skeleton;