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