Skip to content

Commit fdb4281

Browse files
Rokt33rDavy-c
authored andcommitted
Replace chevron icon without box
1 parent 5e8e852 commit fdb4281

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/cloud/components/molecules/PageSearch/InPageSearchPortal.tsx

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ import React, {
66
useRef,
77
useEffect,
88
} from 'react'
9-
import {
10-
mdiChevronLeftBoxOutline,
11-
mdiChevronRightBoxOutline,
12-
mdiMagnify,
13-
} from '@mdi/js'
9+
import { mdiChevronLeft, mdiChevronRight, mdiMagnify } from '@mdi/js'
1410
import { findInPage, stopFindInPage } from '../../../../lib/electronOnly'
1511
import { useDebounce, useEffectOnce } from 'react-use'
1612
import cc from 'classcat'
@@ -206,14 +202,14 @@ export const InPageSearch = ({
206202
<Button
207203
className={'search__navigation__button__style'}
208204
iconSize={20}
209-
iconPath={mdiChevronLeftBoxOutline}
205+
iconPath={mdiChevronLeft}
210206
variant={'transparent'}
211207
onClick={() => navigateResults('previous')}
212208
/>
213209
<Button
214210
className={'search__navigation__button__style'}
215211
iconSize={20}
216-
iconPath={mdiChevronRightBoxOutline}
212+
iconPath={mdiChevronRight}
217213
variant={'icon'}
218214
onClick={() => navigateResults('next')}
219215
/>

0 commit comments

Comments
 (0)