mirror of
https://github.com/calli-eve/eve-pi.git
synced 2026-02-12 10:48:48 +01:00
18 lines
438 B
TypeScript
18 lines
438 B
TypeScript
import { Box, Button, Tooltip } from "@mui/material";
|
|
export const GitHubButton = () => {
|
|
return (
|
|
<Box>
|
|
<Tooltip title="Checkout the source of this app">
|
|
<Button
|
|
href="https://github.com/calli-eve/eve-pi"
|
|
target="_blank"
|
|
style={{ width: "100%" }}
|
|
sx={{ my: 2, color: "white", display: "block" }}
|
|
>
|
|
GitHub
|
|
</Button>
|
|
</Tooltip>
|
|
</Box>
|
|
);
|
|
};
|