Rev 1847 | Rev 1849 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'
import { CardContent, CardHeader } from '@mui/material'
import WidgetWrapper from '../widgets/WidgetLayout'
const ProfileWidget = ({ title = '', action = null, children }) => {
return (
<WidgetWrapper>
<CardHeader
title={title}
action={action}
sx={{ paddingBottom: 0 }}
titleTypographyProps={{
variant: 'h2'
}}
/>
<CardContent>{children}</CardContent>
</WidgetWrapper>
)
}
export default ProfileWidget