"use client"; import { Button } from "@/components/ui/button"; import { Check, RotateCcw } from "lucide-react"; import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip"; import { toast } from "sonner"; interface ActionButtonsProps { onReset: () => void; } export function ActionButtons({ onReset }: ActionButtonsProps) { const handleApply = () => { toast.info("Settings updated and will be used for all downloads."); }; return (

Reset all settings to their default values.

Confirm and apply all the settings above. This does not download the images.

); }