Skip to content

Commit

Permalink
rename var
Browse files Browse the repository at this point in the history
  • Loading branch information
scarlettperry committed Nov 19, 2020
1 parent 8262822 commit 3d9bf5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/packages/core/src/AppLayout/notifcations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ import styled from "@emotion/styled";
import { Icon } from "@material-ui/core";
import NotificationsIcon from "@material-ui/icons/Notifications";

const NotifcationsStyled = styled(Icon)`
const StyledNotificationsIcon = styled(Icon)`
color: #ffffff;
opacity: 0.87;
`;

const Notifications: React.FC = () => {
return (
<NotifcationsStyled>
<StyledNotificationsIcon>
<NotificationsIcon />
</NotifcationsStyled>
</StyledNotificationsIcon>
);
};

Expand Down

0 comments on commit 3d9bf5e

Please sign in to comment.