13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
export interface SkeletonStyleProps {
|
|
baseColor?: string;
|
|
highlightColor?: string;
|
|
width?: string | number;
|
|
height?: string | number;
|
|
borderRadius?: string | number;
|
|
inline?: boolean;
|
|
duration?: number;
|
|
direction?: 'ltr' | 'rtl';
|
|
enableAnimation?: boolean;
|
|
customHighlightBackground?: string;
|
|
}
|