2023-01-03 03:06:37 -08:00
|
|
|
import WalletIcon from '@components/icons/WalletIcon'
|
2023-08-15 05:29:10 -07:00
|
|
|
import SecondaryConnectButton from './SecondaryConnectButton'
|
2023-01-03 03:06:37 -08:00
|
|
|
|
|
|
|
const ConnectEmptyState = ({ text }: { text: string }) => {
|
|
|
|
return (
|
|
|
|
<div className="flex flex-col items-center">
|
|
|
|
<WalletIcon className="mb-2 h-6 w-6 text-th-fgd-4" />
|
|
|
|
<p className="mb-4">{text}</p>
|
2023-08-15 05:29:10 -07:00
|
|
|
<SecondaryConnectButton />
|
2023-01-03 03:06:37 -08:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ConnectEmptyState
|