summaryrefslogtreecommitdiff
path: root/src/components/login_button.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/login_button.tsx')
-rw-r--r--src/components/login_button.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/login_button.tsx b/src/components/login_button.tsx
new file mode 100644
index 0000000..3516088
--- /dev/null
+++ b/src/components/login_button.tsx
@@ -0,0 +1,11 @@
+import { PersonCircle } from "react-bootstrap-icons";
+
+export default function LoginButton() {
+ return (
+ <button id="loginButton" className="mr-4 text-neutral-500 hover:text-neutral-700 focus:text-neutral-700 disabled:text-black/30 dark:text-neutral-200 dark:hover:text-neutral-300 dark:focus:text-neutral-300 [&.active]:text-black/90 dark:[&.active]:text-neutral-400">
+ <span className="[&>svg]:w-5">
+ <PersonCircle color="#394490" size={32}/>
+ </span>
+ </button>
+ );
+} \ No newline at end of file