Files
notely/frontend/src/components/DangerZonePanel.vue
domrichardson 74d8899eec
All checks were successful
Build and Push App Image / build-and-push (push) Successful in 34s
feat: Updates to dashboard and delete confirmations
2026-04-01 13:40:18 +01:00

25 lines
559 B
Vue

<template>
<section class="danger-zone" :aria-labelledby="titleId">
<h3 :id="titleId" class="danger-zone-title mb-2">{{ title }}</h3>
<p class="danger-zone-copy mb-3">{{ description }}</p>
<slot></slot>
</section>
</template>
<script setup>
defineProps({
titleId: {
type: String,
required: true,
},
title: {
type: String,
default: "Danger Zone",
},
description: {
type: String,
default: "This action is permanent and cannot be undone.",
},
});
</script>