diff --git a/frontend/src/library/button.tsx b/frontend/src/library/button.tsx
index c9ba58a..af848eb 100644
--- a/frontend/src/library/button.tsx
+++ b/frontend/src/library/button.tsx
@@ -15,6 +15,7 @@ type ButtonProps = {
fontSize?: string;
rounded?: string;
buttonSize?: string;
+ type?: "submit" | "reset" | "button"
borderColor?: string;
hoverColor?: string;
hoverScale?: boolean;
@@ -36,11 +37,13 @@ const Button: React.FC
= ({
borderColor = 'border-black',
hoverColor = 'hover:bg-lime-600',
hoverScale = true,
+ type = 'button',
onClick,
className = '',
}) => {
return (