UNPKG

razor-shared-library

Version:
10 lines (9 loc) 320 B
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 {};