lune-ui-lib
Version:
Lune UI Components Library
12 lines (11 loc) • 391 B
TypeScript
import type { SxProps } from '@mui/material';
import React from 'react';
declare const LoadingWrapper: ({ loading, children, className, bigLoader, light, sx, ...rest }: {
loading?: boolean;
children: React.ReactNode;
className?: string;
bigLoader?: boolean;
light?: boolean;
sx?: SxProps;
}) => import("react/jsx-runtime").JSX.Element;
export default LoadingWrapper;