File tree Expand file tree Collapse file tree
src/features/settings/components/BookmarkSettings Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { useRef } from 'react'
22import { BiBookmarkMinus } from 'react-icons/bi'
3- import { GrDocumentDownload , GrDocumentUpload } from 'react-icons/gr '
3+ import { RiFileDownloadFill , RiFileUploadFill } from 'react-icons/ri '
44import toast from 'react-simple-toasts'
55import { CardLink } from 'src/components/Elements'
66import { 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 Import
129129 </ button >
130- < button className = "extraBtn extraTextBtn" onClick = { ( ) => exportBookmarks ( ) } >
131- < GrDocumentDownload />
132- Export
130+ < button className = "extraBtn" onClick = { ( ) => exportBookmarks ( ) } >
131+ < RiFileDownloadFill />
133132 </ button >
134133 </ >
135134 } >
You can’t perform that action at this time.
0 commit comments