Files
eve-pi/src/app/components/Github/GitHubButton.tsx
2023-06-24 16:23:18 +03:00

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>
);
};