summaryrefslogtreecommitdiffhomepage
path: root/src/components/Button.jsx
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-06-06 19:24:45 -0400
committerrealtradam <[email protected]>2024-06-06 19:24:45 -0400
commit34346b1fd4fffd2571374f86b16084066dc4aa2d (patch)
tree1f147151e9b1eb9449394d5adb1827b04c4841c5 /src/components/Button.jsx
parent7a38eef00de0bb35565dda3ddb1efa748c22ea47 (diff)
downloadmalcz.com-34346b1fd4fffd2571374f86b16084066dc4aa2d.tar.gz
malcz.com-34346b1fd4fffd2571374f86b16084066dc4aa2d.zip
add seperate uploading page and update match backend functionality
Diffstat (limited to 'src/components/Button.jsx')
-rw-r--r--src/components/Button.jsx15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/components/Button.jsx b/src/components/Button.jsx
deleted file mode 100644
index de199d0..0000000
--- a/src/components/Button.jsx
+++ /dev/null
@@ -1,15 +0,0 @@
-import React from "react";
-import { Link } from "react-router-dom";
-
-export default function Button ({ link, width = 36, height = 16, spinner = 4 })
-{
- return (
- <>
- <div className={`w-${ width } h-${ height } relative grid rounded-[5px] cursor-pointer overflow-hidden place-items-center before:content-[''] before:absolute before:w-${ spinner } before:bg-amber-400 before:rotate-[32deg] before:h-[1%] before:transition-all before:duration-500 before:ease-linear before:animate-[buttonSpin_1.5s_linear_infinite] hover:before:h-[2800%] hover:before:transition-all hover:before:duration-0 hover:before:ease-linear after:absolute after:content-[''] after:bg-stone-800 after:rounded-[5px] after:inset-0 after:transition-all after:duration-200 after:ease-in-out hover:after:inset-[5px] hover:after:transition-all hover:after:duration-200 hover:after:ease-in-out`}>
- <div className="z-[3]">
- { link }
- </div>
- </div>
- </>
- )
-};