interface CommandBarOverwriteWarningProps { heading?: string message?: string } export function CommandBarOverwriteWarning({ heading = 'Overwrite current file?', message = 'This will permanently replace the current code in the editor.', }: CommandBarOverwriteWarningProps) { return ( <>

{heading}

{message}

) }