Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2168 Rev 2265
Línea 8... Línea 8...
8
const Button = ({
8
const Button = ({
9
  children,
9
  children,
10
  variant = 'text',
10
  variant = 'text',
11
  onClick,
11
  onClick,
12
  fullWidth = false,
12
  fullWidth = false,
-
 
13
  styles = {},
13
  ...props
14
  ...props
14
}) => {
15
}) => {
15
  return (
16
  return (
-
 
17
    <AppButton
-
 
18
      variant={variant}
-
 
19
      onClick={onClick}
16
    <AppButton variant={variant} onClick={onClick} fullWidth={false} {...props}>
20
      fullWidth={false}
-
 
21
      sx={{}}
-
 
22
      {...props}
-
 
23
    >
17
      {children}
24
      {children}
18
    </AppButton>
25
    </AppButton>
19
  )
26
  )
20
}
27
}