import { formatBytes } from '@/utils/format'; import { CopyButton } from '@/components/CopyButton'; export interface JsonResultPanelProps { title: string; content: string; originalBytes: number; outputBytes: number; outputSizeLabel?: string; maxHeight?: string; } export default function JsonResultPanel({ title, content, originalBytes, outputBytes, outputSizeLabel = '格式化后大小', maxHeight = '420px', }: JsonResultPanelProps) { return (