Skip to content

Commit

Permalink
Merge pull request #3283 from sagarbakhtar/doc-cutomize-login-logout
Browse files Browse the repository at this point in the history
[RFR] Doc fix Customizing Login and Logout components
  • Loading branch information
fzaninotto authored Jun 3, 2019
2 parents f6cfd15 + d564782 commit 1ad0d26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ const MyLogoutButton = ({ userLogout, ...rest }) => (
xsmall={
<MenuItem
onClick={userLogout}
{...sanitizeRestProps(rest)}
{...rest}
>
<ExitIcon /> Logout
</MenuItem>
Expand All @@ -296,7 +296,7 @@ const MyLogoutButton = ({ userLogout, ...rest }) => (
<Button
onClick={userLogout}
size="small"
{...sanitizeRestProps(rest)}
{...rest}
>
<ExitIcon /> Logout
</Button>
Expand Down

0 comments on commit 1ad0d26

Please sign in to comment.