File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import {
10
10
mdiDotsVertical ,
11
11
mdiStarOutline ,
12
12
mdiStar ,
13
+ mdiExportVariant ,
13
14
} from '@mdi/js'
14
15
import { borderBottom , flexCenter } from '../../lib/styled/styleFunctions'
15
16
import ToolbarIconButton from '../atoms/ToolbarIconButton'
@@ -344,6 +345,11 @@ const NotePageToolbar = ({
344
345
onClick = { ! note . data . bookmarked ? bookmark : unbookmark }
345
346
iconPath = { note . data . bookmarked ? mdiStar : mdiStarOutline }
346
347
/>
348
+ < ToolbarIconButton
349
+ title = { t ( 'note.export' ) }
350
+ onClick = { openExportContextMenu }
351
+ iconPath = { mdiExportVariant }
352
+ />
347
353
{ note . trashed ? (
348
354
< >
349
355
< ToolbarIconButton
@@ -364,11 +370,6 @@ const NotePageToolbar = ({
364
370
iconPath = { mdiTrashCan }
365
371
/>
366
372
) }
367
- < ToolbarIconButton
368
- title = { t ( 'note.export' ) }
369
- onClick = { openExportContextMenu }
370
- iconPath = { mdiDotsVertical }
371
- />
372
373
</ Control >
373
374
) }
374
375
</ Container >
You can’t perform that action at this time.
0 commit comments