@etsoo/materialui
Version:
TypeScript Material-UI Implementation
9 lines (8 loc) • 414 B
TypeScript
import { CircularProgressProps } from "@mui/material/CircularProgress";
import { TypographyProps } from "@mui/material/Typography";
export type PercentCircularProgressProps = CircularProgressProps & {
value: number;
valueUnit?: string;
textProps?: TypographyProps<"div">;
};
export declare function PercentCircularProgress(props: PercentCircularProgressProps): import("react/jsx-runtime").JSX.Element;