{
onInitLocalCallFeed();
@@ -264,7 +277,13 @@ function RoomSetupView({
-
+ {isGuest ? (
+
+ Log in
+
+ ) : (
+
+ )}
diff --git a/src/button/Button.module.css b/src/button/Button.module.css
index ea233ea2..6433eca9 100644
--- a/src/button/Button.module.css
+++ b/src/button/Button.module.css
@@ -28,6 +28,7 @@ limitations under the License.
padding: 0;
border: none;
cursor: pointer;
+ text-decoration: none;
}
.secondary,
diff --git a/src/button/LinkButton.jsx b/src/button/LinkButton.jsx
new file mode 100644
index 00000000..cd656c58
--- /dev/null
+++ b/src/button/LinkButton.jsx
@@ -0,0 +1,12 @@
+import React from "react";
+import { Link } from "react-router-dom";
+import classNames from "classnames";
+import styles from "./Button.module.css";
+
+export function LinkButton({ className, children, ...rest }) {
+ return (
+
+ {children}
+
+ );
+}
diff --git a/src/button/index.js b/src/button/index.js
index e20a7cb6..0dc793c9 100644
--- a/src/button/index.js
+++ b/src/button/index.js
@@ -1,2 +1,3 @@
export * from "./Button";
export * from "./CopyButton";
+export * from "./LinkButton";