UNPKG

es-grid-template

Version:

es-grid-template

15 lines (14 loc) 495 B
import type { ReactNode } from 'react'; import React from 'react'; export interface LoadingContentWrapperProps { visible: boolean; children: ReactNode; } interface LoadingProps { visible: boolean | undefined; children: ReactNode; LoadingContentWrapper?: React.ComponentType<LoadingContentWrapperProps>; LoadingIcon?: React.ComponentType; } export default function Loading({ visible, children, LoadingContentWrapper, LoadingIcon, }: LoadingProps): JSX.Element; export {};