Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3462 Rev 3585
Línea 78... Línea 78...
78
      {children}
78
      {children}
79
    </CardContent>
79
    </CardContent>
80
  );
80
  );
81
}
81
}
Línea -... Línea 82...
-
 
82
 
-
 
83
export function WidgetFooter({ children, styles = {}, ...props }) {
-
 
84
  return (
-
 
85
    <CardActions
-
 
86
      sx={{
-
 
87
        padding: 0.5,
-
 
88
        justifyContent: 'space-around',
-
 
89
        gap: { xs: 0, md: 0.5 },
-
 
90
        borderTop: `1px solid ${colors.border.primary}`,
-
 
91
        ...styles
-
 
92
      }}
-
 
93
      {...props}
-
 
94
    >
-
 
95
      {children}
-
 
96
    </CardActions>
-
 
97
  );
-
 
98
}
82
 
99
 
83
export function WidgetActions({ children, styles = {}, ...props }) {
100
export function WidgetActions({ children, styles = {}, ...props }) {
84
  return (
101
  return (
85
    <CardActions
102
    <CardActions
86
      sx={{
103
      sx={{
Línea 128... Línea 145...
128
  );
145
  );
129
}
146
}
Línea 130... Línea 147...
130
 
147
 
131
Widget.Header = WidgetHeader;
148
Widget.Header = WidgetHeader;
-
 
149
Widget.Body = WidgetBody;
132
Widget.Body = WidgetBody;
150
Widget.Footer = WidgetFooter;
133
Widget.Actions = WidgetActions;
151
Widget.Actions = WidgetActions;
Línea 134... Línea 152...
134
Widget.Media = WidgetMedia;
152
Widget.Media = WidgetMedia;