@@ -0,0 +1,19 @@
+<template>
+ <div v-for="tab in tabs" :key="tab.name" class="row" style="height: 30px">
+ <div
+ class="col-2 bg-secondary flex items-center justify-center"
+ style="border-radius: 8px"
+ >
+ <div class="text-center">{{ tab.label }}</div>
+ </div>
+</template>
+
+<script setup>
+const { tabs } = defineProps({
+ tabs: {
+ type: Array,
+ required: true,
+ },
+});
+</script>