Files
Caramel-CRM/resources/js/components/ui/crm-sidebar/SidebarTrigger.vue
T

28 lines
685 B
Vue
Raw Normal View History

2026-02-17 10:35:03 +01:00
<script setup lang="ts">
import type { HTMLAttributes } from 'vue'
import { cn } from '@/lib/utils'
import { Button } from '@/components/ui/button'
import { PanelLeft } from 'lucide-vue-next'
import { useSidebar } from './utils'
const props = defineProps<{
class?: HTMLAttributes['class']
}>()
const { toggleSidebar, open } = 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 :class="open ? 'text-primary' : 'text-sidebar-icon'" />
<span class="sr-only">Toggle Sidebar</span>
</Button>
</template>