mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-29 00:16:39 +01:00
round progress components
This commit is contained in:
@@ -34,6 +34,7 @@ import {
|
||||
TextField,
|
||||
Tabs,
|
||||
Tab,
|
||||
CircularProgress,LinearProgress
|
||||
} from "@mui/material";
|
||||
import SparkIcon from "@mui/icons-material/OfflineBoltOutlined";
|
||||
import { useConfirmation } from "components/ConfirmationDialog";
|
||||
@@ -898,6 +899,9 @@ export default function TestView() {
|
||||
Progress
|
||||
</Button>
|
||||
</Stack>
|
||||
|
||||
<CircularProgress />
|
||||
<LinearProgress />
|
||||
</Stack>
|
||||
</Container>
|
||||
</Navigation>
|
||||
|
||||
@@ -855,6 +855,20 @@ export const components = (theme: Theme): ThemeOptions => {
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
MuiCircularProgress: {
|
||||
styleOverrides: {
|
||||
circle: {
|
||||
strokeLinecap: "round",
|
||||
},
|
||||
},
|
||||
},
|
||||
MuiLinearProgress: {
|
||||
styleOverrides: {
|
||||
root: { borderRadius: theme.shape.borderRadius },
|
||||
bar: { borderRadius: theme.shape.borderRadius },
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user