ff-webpage/app/components/dynamicZone/Spacer.vue

13 lines
302 B
Vue
Raw Normal View History

2025-02-14 13:57:55 +01:00
<template>
<div class="bg-primary h-2 rounded-full w-48 mx-auto"></div>
</template>
<script setup lang="ts">
import type { PropType } from "vue";
2025-07-23 13:46:18 +02:00
import type DynamicZoneSpacer from "~~/types/component/dynamic-zone/spacer";
2025-02-14 13:57:55 +01:00
defineProps({
data: Object as PropType<DynamicZoneSpacer>,
});
</script>