LeftSidebarHeader.vue 566 B

123456789101112131415161718192021
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. import OnlineNotification from '#desktop/components/layout/LayoutSidebar/LeftSidebar/LeftSidebarHeader/OnlineNotification.vue'
  4. interface Props {
  5. collapsed?: boolean
  6. }
  7. defineProps<Props>()
  8. </script>
  9. <template>
  10. <header
  11. class="flex gap-2 rounded-t-lg pt-0.5"
  12. :class="{ 'justify-center': collapsed }"
  13. >
  14. <!-- :TODO Add search field -->
  15. <OnlineNotification :class="{ 'ltr:ml-auto rtl:mr-auto': !collapsed }" />
  16. </header>
  17. </template>