// tdd-guard:skip — thin wrapper around the shared QafXlsxExportButton (KAR-949
// review Finding 3 — cleanup): keeps this file/import path stable for
// existing call sites, all UI/Blob-Glue logic now lives in
// qaf-xlsx-export-button.tsx (this file used to be a byte-identical copy of
// qaf-export-button.tsx, differing only in the action/label).
'use client'

import { exportQafG60ComparisonXlsx } from '@/app/qaf-differences/actions'
import QafXlsxExportButton from '@/components/qaf-differences/qaf-xlsx-export-button'

interface Props {
  comparisonId: string
  className?: string
}

export default function QafG60ExportButton({ comparisonId, className }: Props) {
  return (
    <QafXlsxExportButton
      comparisonId={comparisonId}
      action={exportQafG60ComparisonXlsx}
      label="Excel-Export (G60)"
      className={className}
    />
  )
}
