Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2163 Rev 2167
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
2
import { Button as MuiButton } from '@mui/material'
2
import { Button as MuiButton, styled } from '@mui/material'
3
import styled from 'styled-components'
-
 
Línea 4... Línea 3...
4
 
3
 
5
const AppButton = styled(MuiButton)(() => ({
4
const AppButton = styled(MuiButton)(() => ({
6
  overflow: 'visible'
5
  overflow: 'visible'
Línea 12... Línea 11...
12
  onClick,
11
  onClick,
13
  fullWidth = false,
12
  fullWidth = false,
14
  ...props
13
  ...props
15
}) => {
14
}) => {
16
  return (
15
  return (
17
    <AppButton {...props} variant='' onClick={onClick} fullWidth={false}>
16
    <AppButton variant='' onClick={onClick} fullWidth={false} {...props}>
18
      {children}
17
      {children}
19
    </AppButton>
18
    </AppButton>
20
  )
19
  )
21
}
20
}