import type { ReactNode } from "react"; interface CenteredModalProps { title: string; width: number; height?: number; padding?: number; backgroundColor?: string; children: ReactNode; } export function CenteredModal({ title, width, height, padding = 2, backgroundColor = "#1a1a2e", children, }: CenteredModalProps) { return ( {children} ); }