summaryrefslogtreecommitdiff
path: root/src/components/login_button.tsx
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-05-04 19:51:08 -0600
committerHombreLaser <sebastian-440@live.com>2023-05-04 19:51:08 -0600
commit3d29fc04eec0e32df4d9c66388fb2303d01dac45 (patch)
treee42802a5d4c16ba017eb757215eb810b6e30b567 /src/components/login_button.tsx
parentc36b2a93287f37223925609e06c96a16b606a130 (diff)
Arregla modal de inicio de sesión
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