Add components for Act management and integrate Electron setup

This commit is contained in:
natreex
2025-11-16 11:00:04 -05:00
parent e192b6dcc2
commit 8167948881
97 changed files with 25378 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
import React from "react";
interface CancelButtonProps {
callBackFunction: () => void;
text?: string;
}
export default function CancelButton(
{
callBackFunction,
text = "Annuler"
}: CancelButtonProps) {
return (
<button
onClick={callBackFunction}
className="px-5 py-2.5 rounded-lg bg-secondary/50 text-text-primary border border-secondary/50 hover:bg-secondary hover:border-secondary hover:shadow-md transition-all duration-200 hover:scale-105 font-medium"
>
{text}
</button>
);
}