Skip to content

Commit

Permalink
fix: collapsed navbar icon fix (#204)
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Carter <[email protected]>
  • Loading branch information
syedsajjadkazmii and mattcarter authored Sep 7, 2023
1 parent 0f24d3a commit 5dc89d7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';

import { useIntl } from '@edx/frontend-platform/i18n';
import { Menu, Close } from '@edx/paragon/icons';
import { MenuIcon, Close } from '@edx/paragon/icons';
import { IconButton, Icon } from '@edx/paragon';

import { useLearnerDashboardHeaderData, useIsCollapsed } from '../hooks';
Expand All @@ -23,7 +23,7 @@ export const CollapsedHeader = () => {
<IconButton
invertColors
isActive
src={isOpen ? Close : Menu}
src={isOpen ? Close : MenuIcon}
iconAs={Icon}
alt={
isOpen
Expand Down

0 comments on commit 5dc89d7

Please sign in to comment.