Added first sidebar draft

This commit is contained in:
Alexis
2025-04-28 17:18:06 +02:00
parent 93a03ca4e2
commit a5f7e1ded9
8 changed files with 111 additions and 16 deletions

View File

@@ -0,0 +1,15 @@
<script lang="ts" setup>
import { PhList } from "@phosphor-icons/vue"
const { toggleSidebar } = useUiStore()
</script>
<template>
<UiButton
size="icon"
variant="outline"
@click="toggleSidebar"
>
<PhList size="19" weight="light" />
</UiButton>
</template>