MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / ThreeDButton

Function ThreeDButton

src/showcase/components/button/3DButton.tsx:1–8  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1const ThreeDButton = () => {
2 return (
3 <button className="group relative m-1 inline-flex cursor-pointer items-center justify-center overflow-hidden rounded-lg border-b-2 border-l-2 border-r-2 border-red-700 bg-gradient-to-tr from-red-600 to-red-500 px-4 py-1 text-white shadow-lg transition duration-100 ease-in-out active:translate-y-0.5 active:border-red-600 active:shadow-none">
4 <span className="absolute h-0 w-0 rounded-full bg-white opacity-10 transition-all duration-300 ease-out group-hover:h-32 group-hover:w-32"></span>
5 <span className="relative font-medium">SyntaxUI</span>
6 </button>
7 )
8}
9
10export default ThreeDButton

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected