CommonObjectAttribute.vue 541 B

1234567891011121314151617181920212223242526
  1. <!-- Copyright (C) 2012-2025 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. interface Props {
  4. label?: string
  5. body?: string
  6. }
  7. defineProps<Props>()
  8. </script>
  9. <template>
  10. <div class="flex flex-col gap-0.5">
  11. <CommonLabel size="small" class="text-stone-200 dark:text-neutral-500">
  12. {{ $t(label) }}
  13. </CommonLabel>
  14. <CommonLabel
  15. tag="div"
  16. size="medium"
  17. class="text-gray-100 dark:text-neutral-400"
  18. >
  19. <slot>{{ body }}</slot>
  20. </CommonLabel>
  21. </div>
  22. </template>