Rev 3462 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react';
import { CardContent as MuiCardContent } from '@mui/material';
export function CardContent({ children, styles = {}, ...props }) {
return (
<MuiCardContent
sx={{
padding: 1,
'&:last-child': { paddingBottom: 1 },
'.MuiCardHeader-root + &': { paddingTop: 0 },
...styles
}}
{...props}
>
{children}
</MuiCardContent>
);
}