Manav Rathi e996664b57
Conv
2025-01-15 16:36:21 +05:30

73 lines
1.6 KiB
TypeScript

import { Divider, Stack, styled, Typography } from "@mui/material";
import React from "react";
interface MenuSectionTitleProps {
/**
* The title for the menu section.
*/
title: string;
/**
* An optional leading SvgIcon.
*/
icon?: React.ReactNode;
}
export const MenuSectionTitle: React.FC<MenuSectionTitleProps> = ({
title,
icon,
}) => (
<Stack
direction="row"
sx={{
px: "8px",
py: "6px",
gap: "8px",
"& > svg": {
fontSize: "17px",
color: "stroke.muted",
},
}}
>
{icon && icon}
<Typography variant="small" sx={{ color: "text.muted" }}>
{title}
</Typography>
</Stack>
);
interface MenuItemDividerProps {
hasIcon?: boolean;
}
export const MenuItemDivider: React.FC<MenuItemDividerProps> = ({
hasIcon,
}) => {
return (
<Divider
sx={[
{ "&&&": { my: 0 } },
hasIcon ? { "&&&": { ml: "48px" } } : { "&&&": { ml: "16px" } },
]}
/>
);
};
export const MenuItemGroup = styled("div")(
({ theme }) => `
& > .MuiMenuItem-root{
border-radius: 8px;
background-color: transparent;
}
& > .MuiMenuItem-root:not(:last-of-type) {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
& > .MuiMenuItem-root:not(:first-of-type) {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
background-color: ${theme.colors.fill.faint};
border-radius: 8px;
`,
);