- import { Button } from "@/components/ui/button"
- interface FacturaActionsProps {
- onGenerarXml: () => void
- }
- export function FacturaActions({ onGenerarXml }: FacturaActionsProps) {
- return (
- <div className="flex gap-4">
- <Button onClick={onGenerarXml} className="flex-1">
- Generar XML
- </Button>
- </div>
- )
- }
|