1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-13 18:30:54 +01:00
upscayl/renderer/components/ResetButton.jsx
2022-09-19 05:24:45 +05:30

15 lines
321 B
JavaScript

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;