123456789101112131415161718192021222324252627 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import ArticleReactionBadge from './ArticleReactionBadge.vue'
- interface Props {
- subject: string
- to?: Maybe<string>
- reaction?: Maybe<string>
- }
- defineProps<Props>()
- </script>
- <template>
- <div
- class="relative rounded-lg border border-current p-3 text-center text-neutral-500"
- >
- <CommonLabel>"{{ subject }}"</CommonLabel>
- <template v-if="to">
- ->
- <CommonLabel>"{{ to }}"</CommonLabel>
- </template>
- <ArticleReactionBadge position="system" :reaction="reaction" />
- </div>
- </template>
|