1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-19 01:24:09 +01:00
upscayl/renderer/components/ResetButton.jsx
2022-09-07 08:01:28 +05:30

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;