fix LinkButton

This commit is contained in:
Abhinav 2022-09-06 17:03:25 +05:30
parent 7fd5f31aa3
commit a06c92d597

View file

@ -39,8 +39,12 @@ const LinkButton: FC<LinkProps<'button', { color?: ButtonProps['color'] }>> = ({
<Link <Link
component="button" component="button"
sx={{ sx={{
color: 'text.primary',
textDecoration: 'underline rgba(255, 255, 255, 0.4)',
'&:hover': { '&:hover': {
color: `${color}.main`, color: `${color}.main`,
textDecoration: `underline `,
textDecorationColor: `${color}.main`,
}, },
...sx, ...sx,
}} }}