FacturaActions.tsx 337 B

123456789101112131415
  1. import { Button } from "@/components/ui/button"
  2. interface FacturaActionsProps {
  3. onGenerarXml: () => void
  4. }
  5. export function FacturaActions({ onGenerarXml }: FacturaActionsProps) {
  6. return (
  7. <div className="flex gap-4">
  8. <Button onClick={onGenerarXml} className="flex-1">
  9. Generar XML
  10. </Button>
  11. </div>
  12. )
  13. }