@navinc/base-react-components
Version:
Nav's Pattern Library
12 lines (11 loc) • 315 B
TypeScript
export default LoadingView;
declare function LoadingView({ className, message, illustration, children, ...props }: {
[x: string]: any;
className: any;
message?: null | undefined;
illustration: any;
children: any;
}): JSX.Element;
declare namespace LoadingView {
const displayName: string;
}