import useThemeWrapper from 'hooks/useThemeWrapper' import { ModalProps } from '../../types/modal' import Modal from '../shared/Modal' import WormholeBridge from '@wormhole-foundation/wormhole-connect' import { COLORS } from 'styles/colors' const BridgeModal = ({ isOpen, onClose }: ModalProps) => { const { theme } = useThemeWrapper() return (

Wormhole Bridge

Bridge tokens from another chain to your Solana wallet. You can then deposit them into your Mango account.

) } export default BridgeModal