From 3d4d7984ccc738f42c7ff287576e7e7e4b470672 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 27 Jun 2020 18:54:01 +0300 Subject: refactor: remove withStyles --- src/pages/ProfilePage/ProfileInfo.tsx | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) (limited to 'src') diff --git a/src/pages/ProfilePage/ProfileInfo.tsx b/src/pages/ProfilePage/ProfileInfo.tsx index 6a2f853..27966e9 100644 --- a/src/pages/ProfilePage/ProfileInfo.tsx +++ b/src/pages/ProfilePage/ProfileInfo.tsx @@ -18,7 +18,7 @@ interface PropTypes { setUser: (a:User) => void; } -const useStyles = makeStyles({ +const useStyles = makeStyles(theme => ({ root: { position: 'relative' }, @@ -45,7 +45,16 @@ const useStyles = makeStyles({ textAlign: 'center' }, badge: { - backgroundColor: 'lightgray' + width: theme.spacing(5), + height: theme.spacing(5), + borderRadius: '50%', + cursor: 'pointer', + background: '#d3d3d3', + display: 'flex', + alignItems: 'center', + '& svg': { + margin: '0 auto' + } }, avatarContainer: { position: 'relative', @@ -58,18 +67,8 @@ const useStyles = makeStyles({ menuText: { color: 'darkgray' } -}); - +})); -const StyledBadge = withStyles((theme) => ({ - badge: { - backgroundColor: 'lightgray', - width: 40, - height: 40, - borderRadius: '50%', - cursor: 'pointer' - }, -}))(Badge); const ProfileInfo: React.FC = ({user, logOut,savedPolls, totalVotes, setUserInfo,setUser}) => { const classes = useStyles(); @@ -87,7 +86,7 @@ const ProfileInfo: React.FC = ({user, logOut,savedPolls, totalVotes,
- = ({user, logOut,savedPolls, totalVotes, }} badgeContent= { -
+
} > - +
-- cgit v1.2.3