Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2162 | Rev 2167 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

import React from 'react'
import { Button as MuiButton } from '@mui/material'
import styled from 'styled-components'

const AppButton = styled(MuiButton)(() => ({
  overflow: 'visible'
}))

const Button = ({
  children,
  variant = 'text',
  onClick,
  fullWidth = false,
  ...props
}) => {
  return (
    <AppButton {...props} variant='' onClick={onClick} fullWidth={false}>
      {children}
    </AppButton>
  )
}

export default Button