interface ActionButtonProps { text: string; icon: string; className?: string; onClick?: (e: MouseEvent) => void; } export default function ActionButton({ text, icon, className, onClick }: ActionButtonProps) { return