Skip to content

Commit

Permalink
fix: update icon
Browse files Browse the repository at this point in the history
  • Loading branch information
varshamenon4 committed May 9, 2024
1 parent 917cc24 commit 3384a20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/course-home/courseware-search/CoursewareSearchToggle.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect } from 'react';
import { injectIntl, intlShape } from '@edx/frontend-platform/i18n';
import { Button } from '@openedx/paragon';
import { Search } from '@openedx/paragon/icons';
import { ManageSearch } from '@openedx/paragon/icons';
import { useDispatch } from 'react-redux';
import messages from './messages';
import { useCoursewareSearchFeatureFlag, useCoursewareSearchParams } from './hooks';
Expand Down Expand Up @@ -33,9 +33,9 @@ const CoursewareSearchToggle = ({
aria-label={intl.formatMessage(messages.searchOpenAction)}
onClick={handleSearchOpenClick}
data-testid="courseware-search-open-button"
iconAfter={Search}
iconAfter={ManageSearch}
>
{messages.contentSearchButton}
{intl.formatMessage(messages.contentSearchButton)}
</Button>
</div>
);
Expand Down

0 comments on commit 3384a20

Please sign in to comment.