mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-13 18:30:54 +01:00
15 lines
321 B
JavaScript
15 lines
321 B
JavaScript
import React from "react";
|
|
|
|
function ResetButton(props) {
|
|
return (
|
|
<button
|
|
className="animate bg-gradient-blue absolute top-1 right-1 z-10 rounded-full py-2 px-4 text-white opacity-30 hover:opacity-100"
|
|
onClick={props.resetImagePaths}
|
|
>
|
|
Reset
|
|
</button>
|
|
);
|
|
}
|
|
|
|
export default ResetButton;
|