import React from 'react' import type { ReactNode } from 'react' import { Classes } from './styles' const DefaultLoadingIcon = React.memo(() => ( )) export interface LoadingContentWrapperProps { visible: boolean children: ReactNode } function DefaultLoadingContentWrapper({ children, visible }: LoadingContentWrapperProps) { return (