Skip to content

Commit b2a3dab

Browse files
committed
Change export icon
1 parent 7511aef commit b2a3dab

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/components/organisms/NotePageToolbar.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
mdiDotsVertical,
1111
mdiStarOutline,
1212
mdiStar,
13+
mdiExportVariant,
1314
} from '@mdi/js'
1415
import { borderBottom, flexCenter } from '../../lib/styled/styleFunctions'
1516
import ToolbarIconButton from '../atoms/ToolbarIconButton'
@@ -344,6 +345,11 @@ const NotePageToolbar = ({
344345
onClick={!note.data.bookmarked ? bookmark : unbookmark}
345346
iconPath={note.data.bookmarked ? mdiStar : mdiStarOutline}
346347
/>
348+
<ToolbarIconButton
349+
title={t('note.export')}
350+
onClick={openExportContextMenu}
351+
iconPath={mdiExportVariant}
352+
/>
347353
{note.trashed ? (
348354
<>
349355
<ToolbarIconButton
@@ -364,11 +370,6 @@ const NotePageToolbar = ({
364370
iconPath={mdiTrashCan}
365371
/>
366372
)}
367-
<ToolbarIconButton
368-
title={t('note.export')}
369-
onClick={openExportContextMenu}
370-
iconPath={mdiDotsVertical}
371-
/>
372373
</Control>
373374
)}
374375
</Container>

0 commit comments

Comments
 (0)