refactor: project architecture refactor, container splitting
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<script>
|
||||
import { Gift, Home, Settings } from "$components/ui/icons.js";
|
||||
|
||||
export let active = "home";
|
||||
</script>
|
||||
|
||||
<nav class="bottom-nav static">
|
||||
<button class:active={active === "home"} type="button"
|
||||
><Home size={20} /><span>Главная</span></button
|
||||
>
|
||||
<button class:active={active === "invite"} type="button"
|
||||
><Gift size={20} /><span>Пригласить</span></button
|
||||
>
|
||||
<button class:active={active === "settings"} type="button"
|
||||
><Settings size={20} /><span>Настройки</span></button
|
||||
>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user