mirror of
https://github.com/upscayl/upscayl.git
synced 2025-01-19 01:24:09 +01:00
15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
import React from "react";
|
|
|
|
function ResetButton(props) {
|
|
return (
|
|
<button
|
|
className="animate absolute bottom-1 right-1 z-10 rounded-full bg-sky-400 py-2 px-4 opacity-50 hover:opacity-100"
|
|
onClick={props.resetImagePaths}
|
|
>
|
|
Reset
|
|
</button>
|
|
);
|
|
}
|
|
|
|
export default ResetButton;
|