@etsoo/materialui
Version:
TypeScript Material-UI Implementation
9 lines (8 loc) • 395 B
TypeScript
import { LinearProgressProps } from "@mui/material/LinearProgress";
import { TypographyProps } from "@mui/material/Typography";
export type PercentLinearProgressProps = LinearProgressProps & {
value: number;
valueUnit?: string;
textProps?: TypographyProps;
};
export declare function PercentLinearProgress(props: PercentLinearProgressProps): import("react/jsx-runtime").JSX.Element;