import React from "react"; import { useTranslation } from "react-i18next"; import { Dialog, DialogContent, Divider, IconButton, List, ListItemText, ListItem, ListItemIcon, ListItemButton, Tooltip, Typography, } from "@mui/material"; import SendIcon from '@mui/icons-material/Send'; import GitHubIcon from '@mui/icons-material/GitHub'; import TwitterIcon from '@mui/icons-material/Twitter'; import Flags from 'country-flag-icons/react/3x2' type Props = { isOpen: boolean; handleClickCloseCommunity: () => void; } const CommunityDialog = ({ isOpen, handleClickCloseCommunity, }: Props): JSX.Element => { const { t } = useTranslation(); const flagProps = { width: 30, height: 30, opacity: 0.85, style: { filter: "drop-shadow(2px 2px 2px #444444)", }, }; return ( {t("Community")}

{t("Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!")}

); }; export default CommunityDialog;