change style component

This commit is contained in:
Ehsan
2024-10-10 21:41:38 +03:30
parent 1749c9577f
commit fb0c02abd4
5 changed files with 32 additions and 4 deletions
+26
View File
@@ -0,0 +1,26 @@
import { Switch } from "@mui/material";
function SwitchTable() {
return (
<Switch
dir="ltr"
sx={
{
// "& .MuiSwitch-thumb": {
// width: "32px",
// height: "32px",
// },
// "& .MuiSwitch-track": {
// height: "24px",
// borderRadius: "28px",
// },
// "&.MuiSwitch-root": {
// width: "86px",
// },
}
}
/>
);
}
export default SwitchTable;