Rev 3588 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'
import { styled } from '@mui/material'
const CardGrid = styled('div')(({ theme }) => ({
display: 'grid',
gap: theme.spacing(0.5),
position: 'relative',
width: '100%',
gridTemplateColumns: 'repeat(auto-fill, minmax(20rem, 1fr))'
}))
export default function ProfileCardsGrid({ children, styles, ...props }) {
return (
<CardGrid sx={styles} {...props}>
{children}
</CardGrid>
)
}