1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-14 10:47:56 +01:00
upscayl/renderer/components/ResetButton.tsx
2022-11-12 02:09:28 +05:30

15 lines
321 B
TypeScript

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;