import { Undo2 } from "lucide-react"; import { cn } from "@/lib/utils"; type PeqUndoButtonProps = { disabled?: boolean; label: string; onClick: () => void; className?: string; }; /** * EQ page undo control — disabled when the undo stack is empty. */ export function PeqUndoButton({ disabled = false, label, onClick, className, }: PeqUndoButtonProps) { return ( ); }