+
+ © 2024 Compass Center
+
+ >
+ );
+}
+
+
+
diff --git a/compass/components/Button.tsx b/compass/components/Button.tsx
index 72c47f9..bf6dd55 100644
--- a/compass/components/Button.tsx
+++ b/compass/components/Button.tsx
@@ -3,21 +3,22 @@ import { FunctionComponent, ReactNode } from 'react';
type ButtonProps = {
children: ReactNode;
onClick?: () => void; // make the onClick handler optional
+ type?: "button" | "submit" | "reset"; // specify possible values for type
+ disabled?: boolean;
};
-const Button: FunctionComponent