diff --git a/src/renderer/components/modals/ExportDialogFooter.tsx b/src/renderer/components/modals/ExportDialogFooter.tsx new file mode 100644 index 0000000..dca8015 --- /dev/null +++ b/src/renderer/components/modals/ExportDialogFooter.tsx @@ -0,0 +1,23 @@ +import { Button } from '@/components/ui/button'; +import { DialogFooter } from '@/components/ui/dialog'; + +interface Props { + onCancel: () => void; + onSubmit: () => void; + submitting: boolean; + submitLabel: string; + submitDisabled?: boolean; +} + +export function ExportDialogFooter({ onCancel, onSubmit, submitting, submitLabel, submitDisabled }: Props) { + return ( + + + + + ); +} \ No newline at end of file