Files
play/app/components/Tab/Row.vue
2025-01-02 18:23:18 +01:00

18 lines
386 B
Vue

<template>
<div px-4 py-6 sm="grid grid-cols-3 gap-4 px-6">
<dt flex items-center text-sm text-light-200 font-medium>
{{ props.heading }}
</dt>
<dd flex items-center text-sm text-neutral-300 leading-6 sm="col-span-2 mt-0">
{{ props.body }}
</dd>
</div>
</template>
<script lang="ts" setup>
const props = defineProps<{
heading: string
body: string
}>();
</script>