summaryrefslogtreecommitdiff
path: root/client/components/common/button.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/common/button.jsx')
-rw-r--r--client/components/common/button.jsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/client/components/common/button.jsx b/client/components/common/button.jsx
new file mode 100644
index 0000000..1e8719a
--- /dev/null
+++ b/client/components/common/button.jsx
@@ -0,0 +1,7 @@
+export const Button = ({ children, ...other }) => {
+ return (
+ <button className="bg-gray-600 pt-2 pb-2 pr-4 pl-4 rounded-lg font-bold text-white" {...other}>
+ {children}
+ </button>
+ );
+};