razor-shared-library
Version:
10 lines (9 loc) • 320 B
TypeScript
import { ReactElement, ReactNode } from 'react';
import { ButtonProps } from '@mui/material/Button';
interface Props {
label: string;
startIcon: ReactNode;
loading: boolean;
}
export declare function LoadingButtonCustom({ label, startIcon, loading, ...props }: ButtonProps & Props): ReactElement;
export {};