Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2366 Rev 2380
Línea 67... Línea 67...
67
}
67
}
Línea 68... Línea 68...
68
 
68
 
69
export function WidgetActions({ children, styles = {}, ...props }) {
69
export function WidgetActions({ children, styles = {}, ...props }) {
70
  return (
70
  return (
-
 
71
    <CardActions
-
 
72
      sx={{
71
    <CardActions
73
        padding: 1,
-
 
74
        paddingTop: 0,
-
 
75
        justifyContent: 'space-around',
-
 
76
        gap: 1,
-
 
77
        '& > button': {
-
 
78
          flex: '1'
-
 
79
        },
-
 
80
        ...styles
72
      sx={{ padding: 1, paddingTop: 0, ...styles }}
81
      }}
73
      disableSpacing
82
      disableSpacing
74
      {...props}
83
      {...props}
75
    >
84
    >
76
      {children}
85
      {children}