import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from '@/components/ui/dialog' import { Button } from '@/components/ui/button' import { IconFolder } from '@tabler/icons-react' interface ChangeDataFolderLocationProps { children: React.ReactNode currentPath: string newPath: string onConfirm: () => void open: boolean onOpenChange: (open: boolean) => void } export default function ChangeDataFolderLocation({ children, currentPath, newPath, onConfirm, open, onOpenChange, }: ChangeDataFolderLocationProps) { return ( {children} Change Data Folder Location Are you sure you want to change the data folder location? This will move all your data to the new location and restart the application.

Current Location:

{currentPath}

New Location:

{newPath}
) }