mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-24 07:30:19 +01:00
15 lines
321 B
TypeScript
15 lines
321 B
TypeScript
|
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;
|