mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-17 21:00:45 +00:00
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
/**
|
|
=========================================================
|
|
* Material Dashboard 2 PRO React TS - v1.0.0
|
|
=========================================================
|
|
|
|
* Product Page: https://www.creative-tim.com/product/material-dashboard-2-pro-react-ts
|
|
* Copyright 2022 Creative Tim (https://www.creative-tim.com)
|
|
|
|
Coded by www.creative-tim.com
|
|
|
|
=========================================================
|
|
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
*/
|
|
|
|
import { FC, forwardRef } from "react";
|
|
|
|
// Material Dashboard 2 PRO React TS components
|
|
import MDTypography from "components/MDTypography";
|
|
|
|
// Custom styles for MDProgress
|
|
import MDProgressRoot from "components/MDProgress/MDProgressRoot";
|
|
|
|
// Delcare props types for MDProgress
|
|
interface Props {
|
|
variant?: "contained" | "gradient";
|
|
color?: "primary" | "secondary" | "info" | "success" | "warning" | "error" | "light" | "dark";
|
|
value: number;
|
|
label?: boolean;
|
|
[key: string]: any;
|
|
}
|
|
|
|
const MDProgress: FC<Props> = forwardRef(({ variant, color, value, label, ...rest }, ref) => (
|
|
<>
|
|
{label && (
|
|
<MDTypography variant="button" fontWeight="medium" color="text">
|
|
{value}%
|
|
</MDTypography>
|
|
)}
|
|
<MDProgressRoot
|
|
{...rest}
|
|
ref={ref}
|
|
variant="determinate"
|
|
value={value}
|
|
ownerState={{ color, value, variant }}
|
|
/>
|
|
</>
|
|
));
|
|
|
|
// Declaring default props for MDProgress
|
|
MDProgress.defaultProps = {
|
|
variant: "contained",
|
|
color: "info",
|
|
value: 0,
|
|
label: false,
|
|
};
|
|
|
|
export default MDProgress;
|