import { GalleryHorizontalEnd, RefreshCw } from 'lucide-react'; interface StackTheDeckProps { onRedo: () => void; onPick: () => void; onHover: (state: React.ReactNode) => void; className?: string; } export default function StackTheDeck({ onRedo, onPick, onHover, className = '', }: StackTheDeckProps) { const curryHandleClick = (action: () => void) => (e: React.MouseEvent) => { e.stopPropagation(); action(); }; return (
); }