xxxxxxxxxx
import React from "react";
import "./App.css";
function App() {
return (
<section>
<div className="bg-slate-800 flex justify-center items-center h-screen">
<button className="relative bg-orange-500 hover:bg-orange-600 text-black font-bold py-2 px-4 rounded overflow-hidden">
<span className="absolute inset-0 bg-transparent hover:bg-blue-500 hover:animate-spin"></span>
Click Me
</button>
</div>
</section>
);
}
export default App;