ente/packages/shared/components/Menu/MenuSectionTitle.tsx
2023-12-24 16:24:31 -05:00

28 lines
732 B
TypeScript

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