Move into web/

This commit is contained in:
Manav Rathi
2024-03-01 12:21:07 +05:30
parent b3193968e7
commit e15c7e1642
915 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { Divider } from "@mui/material";
interface Iprops {
hasIcon?: boolean;
}
export default function MenuItemDivider({ hasIcon = false }: Iprops) {
return (
<Divider
sx={{
"&&&": {
my: 0,
ml: hasIcon ? "48px" : "16px",
},
}}
/>
);
}