CommonObjectAttribute.vue 508 B

12345678910111213141516171819202122
  1. <!-- Copyright (C) 2012-2024 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 size="medium" class="text-gray-100 dark:text-neutral-400">
  15. <slot>{{ body }}</slot>
  16. </CommonLabel>
  17. </div>
  18. </template>