38 lines
888 B
JavaScript
38 lines
888 B
JavaScript
import React from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import Stack from '@mui/material/Stack';
|
|
import LinearProgress from '@mui/material/LinearProgress';
|
|
|
|
export default function LinearIndeterminate() {
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
Linear Indeterminate
|
|
</Typography>
|
|
|
|
<Stack sx={{ width: '100%', color: 'grey.500' }} spacing={2}>
|
|
<LinearProgress color="secondary" />
|
|
<LinearProgress color="success" />
|
|
<LinearProgress color="inherit" />
|
|
</Stack>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|