mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-19 07:19:22 +01:00
29 lines
338 B
Svelte
29 lines
338 B
Svelte
<script>
|
|
import {
|
|
TentTree,
|
|
Caravan,
|
|
FlameKindling,
|
|
MountainSnow,
|
|
Trees,
|
|
Axe,
|
|
Map,
|
|
CloudMoon,
|
|
Sparkles,
|
|
} from "@lucide/svelte";
|
|
|
|
import "./icon.css";
|
|
</script>
|
|
|
|
<div class="grid">
|
|
<TentTree />
|
|
<Caravan />
|
|
<FlameKindling />
|
|
<MountainSnow />
|
|
<Trees />
|
|
<Axe />
|
|
<Map />
|
|
<CloudMoon />
|
|
<Sparkles />
|
|
</div>
|
|
|