1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-24 19:38:22 +02:00
upscayl/renderer/components/ResetButton.jsx
2022-08-31 20:55:26 +05:30

15 lines
281 B
JavaScript

import React from "react";
function ResetButton(props) {
return (
<button
className="absolute bottom-1 right-1 z-10 rounded-full bg-sky-400 py-2 px-4 opacity-50"
onClick={props.resetImagePaths}
>
Reset
</button>
);
}
export default ResetButton;