Files
FlightsAPI/resources/js/Components/FlightsGoneBy/Panels/Panel.vue
T
2026-06-29 21:42:47 +10:00

24 lines
429 B
Vue

<script setup lang="ts">
import PanelLabel from "@/Components/FlightsGoneBy/Panels/PanelLabel.vue";
defineProps<{
label?: string
}>()
</script>
<template>
<div class="panel glass glass-border">
<PanelLabel v-if="label">{{label}}</PanelLabel>
<slot />
</div>
</template>
<style scoped>
.panel {
padding: 1.25rem 1.5rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
</style>