12 lines
305 B
Vue
12 lines
305 B
Vue
<template>
|
|
<div class="bg-primary h-2 rounded-full w-48 mx-auto"></div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { PropType } from "vue";
|
|
import type DynamicZoneSpacer from "../../types/component/dynamic-zone/spacer";
|
|
|
|
defineProps({
|
|
data: Object as PropType<DynamicZoneSpacer>,
|
|
});
|
|
</script>
|