@navinc/base-react-components
Version:
Nav's Pattern Library
14 lines (13 loc) • 544 B
TypeScript
import { ReactNode } from 'react';
import { InferComponentProps } from './types.js';
declare const GoldenCenter: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
declare type LoadingViewProps = {
className?: string;
message?: ReactNode;
illustration?: string;
} & InferComponentProps<typeof GoldenCenter>;
declare const LoadingView: {
({ className, message, illustration, ...props }: LoadingViewProps): JSX.Element;
displayName: string;
};
export default LoadingView;