import { VerticallyCenteredFlex } from "@ente/shared/components/Container"; import { Typography } from "@mui/material"; interface Iprops { title: string; icon?: JSX.Element; } export default function MenuSectionTitle({ title, icon }: Iprops) { return ( svg": { fontSize: "17px", color: (theme) => theme.colors.stroke.muted, }, }} > {icon && icon} {title} ); }