// 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
// it, differing only in the action/label).
'use client'

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

interface Props {
  comparisonId: string
  className?: string
}

export default function QafExportButton({ comparisonId, className }: Props) {
  return (
    <QafXlsxExportButton
      comparisonId={comparisonId}
      action={exportQafComparisonXlsx}
      label="Excel-Export (8 Blatt)"
      className={className}
    />
  )
}
