Skip to content

Commit 37f406c

Browse files
committed
change the import/export icons
1 parent 8c1b3e9 commit 37f406c

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

src/features/settings/components/BookmarkSettings/BookmarkSettings.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useRef } from 'react'
22
import { BiBookmarkMinus } from 'react-icons/bi'
3-
import { GrDocumentDownload, GrDocumentUpload } from 'react-icons/gr'
3+
import { RiFileDownloadFill, RiFileUploadFill } from 'react-icons/ri'
44
import toast from 'react-simple-toasts'
55
import { CardLink } from 'src/components/Elements'
66
import { SettingsContentLayout } from 'src/components/Layout/SettingsContentLayout'
@@ -124,12 +124,11 @@ export const BookmarkSettings = () => {
124124
onChange={handleFileChange}
125125
/>
126126
<button className="extraBtn extraTextBtn" onClick={() => importBookmarks()}>
127-
<GrDocumentUpload />
127+
<RiFileUploadFill />
128128
&nbsp;Import
129129
</button>
130-
<button className="extraBtn extraTextBtn" onClick={() => exportBookmarks()}>
131-
<GrDocumentDownload />
132-
&nbsp;Export
130+
<button className="extraBtn" onClick={() => exportBookmarks()}>
131+
<RiFileDownloadFill />
133132
</button>
134133
</>
135134
}>

0 commit comments

Comments
 (0)