'use client'; import QRCode from 'react-qr-code'; import { CopyButton } from './copy-button'; export function OutputBlock({ label, value, qr = false, }: { label: string; value: string; qr?: boolean; }) { return (
{label}
        {value}
      
{qr && value ? (
) : null}
); }