File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,15 @@ import { useOsmFile, useOsmWorker } from "@/hooks/osm"
8
8
import { APPID , DEFAULT_BASE_PBF_URL , DEFAULT_PATCH_PBF_URL } from "@/settings"
9
9
import { mapAtom } from "@/state/map"
10
10
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"
12
20
import { showSaveFilePicker } from "native-file-system-adapter"
13
21
import {
14
22
Osm ,
@@ -248,6 +256,7 @@ export default function Merge() {
248
256
} )
249
257
} }
250
258
>
259
+ < FileDiff />
251
260
Generate changeset
252
261
</ Button >
253
262
< Button variant = "outline" onClick = { prevStep } >
@@ -289,7 +298,7 @@ export default function Merge() {
289
298
} )
290
299
} }
291
300
>
292
- < ArrowRight /> Apply changes
301
+ < MergeIcon /> Apply changes
293
302
</ Button >
294
303
< Button variant = "outline" onClick = { prevStep } >
295
304
< ArrowLeft /> Back
@@ -350,7 +359,9 @@ export default function Merge() {
350
359
PBF...
351
360
</ >
352
361
) : (
353
- "Download merged OSM PBF"
362
+ < >
363
+ < DownloadIcon /> Download merged OSM PBF
364
+ </ >
354
365
) }
355
366
</ Button >
356
367
</ >
You can’t perform that action at this time.
0 commit comments