chore(react/ribbon): add menu

This commit is contained in:
Elian Doran
2025-08-23 19:48:01 +03:00
parent 73ca285b7a
commit 3f3c7cfe88
3 changed files with 89 additions and 95 deletions

View File

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