'use client'; import React from 'react'; import { Card } from '@/ui/Card'; import { Stack } from '@/ui/Stack'; import { Heading } from '@/ui/Heading'; import { Text } from '@/ui/Text'; import { Box } from '@/ui/Box'; interface AdminDangerZonePanelProps { title: string; description: string; children: React.ReactNode; } /** * AdminDangerZonePanel * * Semantic panel for destructive or dangerous admin actions. * Restrained but clear warning styling. */ export function AdminDangerZonePanel({ title, description, children }: AdminDangerZonePanelProps) { return ( {title} {description} {children} ); }