import React, { ReactNode } from 'react'; import { Box } from './Box'; import { Text } from './Text'; import { Heading } from './Heading'; import { Card } from './Card'; interface DangerZoneProps { title: string; description: string; children: ReactNode; } export function DangerZone({ title, description, children }: DangerZoneProps) { return ( Danger Zone {title} {description} {children} ); }