native-base
Version:
Essential cross-platform UI components for React Native
30 lines (29 loc) • 663 B
TypeScript
export declare const Skeleton: {
baseStyle: (props: Record<string, any>) => {
startColor: any;
endColor: string;
overflow: string;
fadeDuration: number;
speed: number;
h: string;
w: string;
};
};
export declare const SkeletonText: {
baseStyle: (props: Record<string, any>) => {
startColor: any;
endColor: string;
fadeDuration: number;
w: string;
speed: number;
flexDirection: string;
_line: {
h: number;
rounded: string;
};
};
defaultProps: {
lines: number;
space: number;
};
};