Skip to content

Commit

Permalink
Fix Close.svelte usages
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaGanchev committed Sep 22, 2023
1 parent 71f27d0 commit 615f4c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/MobileNav.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import NavClose from "$lib/NavClose.svelte";
import Close from "$lib/Close.svelte";
import NavMinus from "$lib/NavMinus.svelte";
import NavPlus from "$lib/NavPlus.svelte";
import { fly } from 'svelte/transition';
Expand Down Expand Up @@ -31,7 +31,7 @@
<div class="mobile-nav" transition:fly="{{ x: 300, duration: 300 }}">
<div class="close">
<button class="icon-button" aria-label="затвори мобилна навигация" on:click={closeNavbar}>
<NavClose />
<Close />
</button>
</div>
<nav>
Expand Down

0 comments on commit 615f4c4

Please sign in to comment.