import * as React from 'react'; import { META_MASK_CHROME_STORE_URL, META_MASK_SITE_URL } from '../constants'; import { ColorOption } from '../style/theme'; import { MetaMaskLogo } from './meta_mask_logo'; import { StandardPanelContent } from './standard_panel_content'; import { Button } from './ui/button'; export interface InstallWalletPanelContentProps {} export const InstallWalletPanelContent: React.StatelessComponent = () => ( } title="Install MetaMask" description="Please install the MetaMask wallet extension from the Chrome Store." moreInfoSettings={{ href: META_MASK_SITE_URL, text: 'What is MetaMask?', }} action={ } /> );