import React from "react"; import styled from "styled-components"; import { Link } from "../../components/Link"; import { HelpIcon } from "../../components/Svg"; import { Modal } from "../Modal"; import WalletCard from "./WalletCard"; import config from "./config"; import { Login } from "./types"; interface Props { login: Login; onDismiss?: () => void; } const HelpLink = styled(Link)` display: flex; align-self: center; align-items: center; margin-top: 24px; `; const ConnectModal: React.FC = ({ login, onDismiss = () => null }) => ( {config.map((entry, index) => ( ))} Learn how to connect ); export default ConnectModal;