diff --git a/src/common/components/Button/Button.jsx b/src/common/components/Button/Button.jsx
new file mode 100644
index 0000000..c78a78b
--- /dev/null
+++ b/src/common/components/Button/Button.jsx
@@ -0,0 +1,9 @@
+import "./styles.sass";
+
+const Button = (props) => {
+    return (
+        <button className="primary-btn">{props.text}</button>
+    )
+}
+
+export default Button;
\ No newline at end of file