()
| 1 | const 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 | |
| 10 | export default ThreeDButton |
nothing calls this directly
no outgoing calls
no test coverage detected