import { Box, Button, makeStyles, Typography } from "@material-ui/core"; import { open } from "@tauri-apps/plugin-shell"; import InfoBox from "../../modal/swap/InfoBox"; const useStyles = makeStyles((theme) => ({ spacedBox: { display: "flex", gap: theme.spacing(1), }, })); const GITHUB_ISSUE_URL = "https://github.com/UnstoppableSwap/core/issues/new/choose"; const MATRIX_ROOM_URL = "https://matrix.to/#/#unstoppableswap:matrix.org"; export const DISCORD_URL = "https://discord.gg/aqSyyJ35UW"; export default function ContactInfoBox() { const classes = useStyles(); return ( If you need help or just want to reach out to the contributors of this project you can open a GitHub issue, join our Matrix room or Discord } additionalContent={ } icon={null} loading={false} /> ); }