Rev 2167 | Rev 2265 | 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, styled } from '@mui/material'
const AppButton = styled(MuiButton)(() => ({
overflow: 'visible'
}))
const Button = ({
children,
variant = 'text',
onClick,
fullWidth = false,
...props
}) => {
return (
<AppButton variant={variant} onClick={onClick} fullWidth={false} {...props}>
{children}
</AppButton>
)
}
export default Button