mirror of
https://github.com/calli-eve/eve-pi.git
synced 2026-02-11 18:28:49 +01:00
24 lines
580 B
TypeScript
24 lines
580 B
TypeScript
import { Box, Button, Tooltip } from "@mui/material";
|
|
export const SupportButton = () => {
|
|
return (
|
|
<Box>
|
|
<Tooltip
|
|
title={`
|
|
Consider using code 'CALLIEVE' on EVE store checkout to support the project! Click to copy to clipboard ;)
|
|
`}
|
|
>
|
|
<Button
|
|
href=""
|
|
style={{ width: "100%" }}
|
|
sx={{ color: "white", display: "block" }}
|
|
onClick={() => {
|
|
navigator.clipboard.writeText("CALLIEVE");
|
|
}}
|
|
>
|
|
CALLIEVE
|
|
</Button>
|
|
</Tooltip>
|
|
</Box>
|
|
);
|
|
};
|