mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-11 16:28:37 +01:00
28 lines
629 B
Vue
28 lines
629 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
import { Button } from '@/components/ui/button'
|
|
import { PanelLeft,Menu } from 'lucide-vue-next'
|
|
import { useSidebar } from './utils'
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class']
|
|
}>()
|
|
|
|
const { toggleSidebar } = useSidebar()
|
|
</script>
|
|
|
|
<template>
|
|
<Button
|
|
data-sidebar="trigger"
|
|
data-slot="sidebar-trigger"
|
|
variant="ghost"
|
|
size="icon"
|
|
:class="cn( props.class)"
|
|
@click="toggleSidebar"
|
|
>
|
|
<Menu class="size-4"/>
|
|
<span class="sr-only">Toggle Sidebar</span>
|
|
</Button>
|
|
</template>
|