mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
19 lines
496 B
Vue
19 lines
496 B
Vue
<!-- Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/ -->
|
|
|
|
<script setup lang="ts">
|
|
export interface Props {
|
|
label?: string
|
|
body?: string | number
|
|
}
|
|
|
|
defineProps<Props>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="border-b border-gray-300 px-3 first:pt-1 last:border-0 last:pb-1">
|
|
<section :aria-label="$t(label)" class="min-h-[54px] py-2">
|
|
<div class="text-xs text-white/80">{{ $t(label) }}</div>
|
|
<slot>{{ body }}</slot>
|
|
</section>
|
|
</div>
|
|
</template>
|