Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2909 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2909 Rev 3047
Línea 5... Línea 5...
5
  display: 'flex',
5
  display: 'flex',
6
  flexWrap: 'wrap',
6
  flexWrap: 'wrap',
7
  gap: theme.spacing(0.5)
7
  gap: theme.spacing(0.5)
8
}))
8
}))
Línea 9... Línea 9...
9
 
9
 
-
 
10
export default function Row({
-
 
11
  children,
-
 
12
  styles,
-
 
13
  direction = 'row',
-
 
14
  gap = 0.5,
-
 
15
  ...props
10
export default function Row({ children, styles, ...props }) {
16
}) {
11
  return (
17
  return (
12
    <MuiRow sx={styles} {...props}>
18
    <MuiRow sx={styles} {...props} flexDirection={direction} gap={gap}>
13
      {children}
19
      {children}
14
    </MuiRow>
20
    </MuiRow>
15
  )
21
  )