| 123456789101112131415161718192021222324252627 |
- <script setup lang="ts">
- import type { HTMLAttributes } from "vue"
- import { PanelLeft } from "lucide-vue-next"
- import { cn } from '@/Packages/Shadcn/Lib/utils'
- import { Button } from '@/Packages/Shadcn/Components/ui/button'
- 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('h-7 w-7', props.class)"
- @click="toggleSidebar"
- >
- <PanelLeft />
- <span class="sr-only">Toggle Sidebar</span>
- </Button>
- </template>
|