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
component="button"
sx={{
color: 'text.primary',
textDecoration: 'underline rgba(255, 255, 255, 0.4)',
'&:hover': {
color: `${color}.main`,
textDecoration: `underline `,
textDecorationColor: `${color}.main`,
},
...sx,
}}