18 lines
442 B
TypeScript
18 lines
442 B
TypeScript
import { Box, Button, Tooltip } from "@mui/material";
|
|
export const DiscordButton = () => {
|
|
return (
|
|
<Box>
|
|
<Tooltip title="Come nerd out in discord about PI and this tool">
|
|
<Button
|
|
href="https://discord.gg/qQK7vu3y9"
|
|
target="_blank"
|
|
style={{ width: "100%" }}
|
|
sx={{ color: "white", display: "block" }}
|
|
>
|
|
Discord
|
|
</Button>
|
|
</Tooltip>
|
|
</Box>
|
|
);
|
|
};
|