@etsoo/materialui
Version:
TypeScript Material-UI Implementation
17 lines (16 loc) • 451 B
TypeScript
import { ButtonProps } from "@mui/material/Button";
import { CircularProgressProps } from "@mui/material/CircularProgress";
/**
* Loading button props
*/
export type LoadingButtonProps = ButtonProps & {
/**
* Loading icon props
*/
loadingIconProps?: CircularProgressProps;
};
/**
* Loading button
* @param props Props
*/
export declare function LoadingButton(props: LoadingButtonProps): import("react/jsx-runtime").JSX.Element;