1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-19 10:55:53 +01:00
upscayl/renderer/components/settings-tab/DonateButton.tsx

16 lines
356 B
TypeScript
Raw Normal View History

2023-07-22 13:07:53 +02:00
import React from "react";
export function DonateButton({}) {
return (
2023-07-23 08:32:22 +02:00
<div className="flex flex-col gap-2 text-sm font-medium">
2023-07-22 13:07:53 +02:00
<p>If you like what we do :)</p>
2023-07-23 08:32:22 +02:00
<a
href="https://buymeacoffee.com/fossisthefuture"
target="_blank"
2024-04-24 15:21:58 +02:00
className="btn btn-primary"
>
💎 DONATE
2023-07-22 13:07:53 +02:00
</a>
</div>
);
}