Skip to content

Commit

Permalink
Updated icon alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
zachsa committed Oct 10, 2022
1 parent 72d8b8b commit e5e52de
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Link } from 'react-router-dom'
import Button from '@mui/material/Button'
import SvgIcon from '@mui/material/SvgIcon'
import LoginIcon from 'mdi-react/LoginVariantIcon'
import Tooltip from '@mui/material/Tooltip'

Expand All @@ -10,9 +11,13 @@ export default props => {
<Button
component={Link}
to={`/login?redirect=${window.location.href}`}
size="small"
endIcon={
<SvgIcon {...props}>
<LoginIcon />
</SvgIcon>
}
{...props}
size="medium"
endIcon={<LoginIcon />}
>
Log in / Sign up
</Button>
Expand Down

0 comments on commit e5e52de

Please sign in to comment.