5 lines
331 B
JavaScript
Executable File
5 lines
331 B
JavaScript
Executable File
export default function Input({className, text, onClick}){
|
|
return(
|
|
<button onClick={ onClick }className="bg-gradient-to-r from-rose-500 active:shadow-lg to-violet-500 hover:from-rose-600 hover:to-violet-600 transition rounded-lg p-2 text-white shadow-sm shadow-red-200 hover:shadow-violet-200">{ text }</button>
|
|
)
|
|
} |