18 lines
410 B
Vue
18 lines
410 B
Vue
<template>
|
|
<div class="px-4 py-6" sm="grid grid-cols-3 gap-4 px-6">
|
|
<dt class="flex items-center text-sm text-light-200 font-medium">
|
|
{{ props.heading }}
|
|
</dt>
|
|
<dd class="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>
|