UNPKG

295 BTypeScriptView Raw
1export interface SkeletonStyleProps {
2 baseColor?: string;
3 highlightColor?: string;
4 width?: string | number;
5 height?: string | number;
6 borderRadius?: string | number;
7 inline?: boolean;
8 duration?: number;
9 direction?: 'ltr' | 'rtl';
10 enableAnimation?: boolean;
11}