MenuItemDivider.tsx 361 B

12345678910111213141516
  1. import { Divider } from "@mui/material";
  2. interface Iprops {
  3. hasIcon?: boolean;
  4. }
  5. export default function MenuItemDivider({ hasIcon = false }: Iprops) {
  6. return (
  7. <Divider
  8. sx={{
  9. "&&&": {
  10. my: 0,
  11. ml: hasIcon ? "48px" : "16px",
  12. },
  13. }}
  14. />
  15. );
  16. }