1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-11 07:16:14 +01:00
upscayl/renderer/components/settings-tab/DonateButton.tsx
Nayam Amarshe d739eae7c7 Add emoji
2024-04-24 18:51:58 +05:30

16 lines
356 B
TypeScript

import React from "react";
export function DonateButton({}) {
return (
<div className="flex flex-col gap-2 text-sm font-medium">
<p>If you like what we do :)</p>
<a
href="https://buymeacoffee.com/fossisthefuture"
target="_blank"
className="btn btn-primary"
>
💎 DONATE
</a>
</div>
);
}