Skip to content

Commit 3140e86

Browse files
Use specific icons
1 parent 910c505 commit 3140e86

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

apps/osm-merge/src/pages/merge.tsx

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ import { useOsmFile, useOsmWorker } from "@/hooks/osm"
88
import { APPID, DEFAULT_BASE_PBF_URL, DEFAULT_PATCH_PBF_URL } from "@/settings"
99
import { mapAtom } from "@/state/map"
1010
import { useAtomValue } from "jotai"
11-
import { ArrowLeft, ArrowRight, Loader2Icon, MaximizeIcon } from "lucide-react"
11+
import {
12+
ArrowLeft,
13+
ArrowRight,
14+
DownloadIcon,
15+
FileDiff,
16+
Loader2Icon,
17+
MaximizeIcon,
18+
MergeIcon,
19+
} from "lucide-react"
1220
import { showSaveFilePicker } from "native-file-system-adapter"
1321
import {
1422
Osm,
@@ -248,6 +256,7 @@ export default function Merge() {
248256
})
249257
}}
250258
>
259+
<FileDiff />
251260
Generate changeset
252261
</Button>
253262
<Button variant="outline" onClick={prevStep}>
@@ -289,7 +298,7 @@ export default function Merge() {
289298
})
290299
}}
291300
>
292-
<ArrowRight /> Apply changes
301+
<MergeIcon /> Apply changes
293302
</Button>
294303
<Button variant="outline" onClick={prevStep}>
295304
<ArrowLeft /> Back
@@ -350,7 +359,9 @@ export default function Merge() {
350359
PBF...
351360
</>
352361
) : (
353-
"Download merged OSM PBF"
362+
<>
363+
<DownloadIcon /> Download merged OSM PBF
364+
</>
354365
)}
355366
</Button>
356367
</>

0 commit comments

Comments
 (0)