Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'
import { Box, styled } from '@mui/material'
const MuiRow = styled(Box)(({ theme }) => ({
display: 'flex',
flexWrap: 'wrap',
gap: theme.spacing(0.5)
}))
export default function Row({ children, styles, ...props }) {
return (
<MuiRow sx={styles} {...props}>
{children}
</MuiRow>
)
}