1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-31 12:13:43 +01:00
upscayl/renderer/components/ResetButton.jsx

15 lines
307 B
React
Raw Normal View History

2022-08-31 20:55:26 +05:30
import React from "react";
function ResetButton(props) {
return (
<button
2022-09-07 08:01:28 +05:30
className="animate absolute bottom-1 right-1 z-10 rounded-full bg-sky-400 py-2 px-4 opacity-50 hover:opacity-100"
2022-08-31 20:55:26 +05:30
onClick={props.resetImagePaths}
>
Reset
</button>
);
}
export default ResetButton;