import React from "react" import { BlockProps, LabelSmall, mergeOverrides, useStyletron, } from "@mezo-org/mezo-clay" type AccountErrorProps = { topic: string } & BlockProps export default function AccountError(props: AccountErrorProps) { const { topic, overrides, ...restProps } = props const [, theme] = useStyletron() return ( An error occured loading {topic}. ) }