File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
src/cloud/components/molecules/PageSearch Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff 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'
1410import { findInPage , stopFindInPage } from '../../../../lib/electronOnly'
1511import { useDebounce , useEffectOnce } from 'react-use'
1612import 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 />
You can’t perform that action at this time.
0 commit comments