import { iconSize } from "../../../../react/core/design-system/index.js"; import { AccentFailIcon } from "../../ui/ConnectWallet/icons/AccentFailIcon.js"; import { Container } from "../../ui/components/basic.js"; import { Button } from "../../ui/components/buttons.js"; import { Spacer } from "../../ui/components/Spacer.js"; import { Text } from "../../ui/components/text.js"; export function ErrorState(props: { onTryAgain: () => void; title: string }) { return ( {props.title} ); }