import { Utils } from '@ethersphere/bee-js' import { Box } from '@material-ui/core' import { ReactElement } from 'react' import { DocumentationText } from '../../components/DocumentationText' import ExpandableListItemKey from '../../components/ExpandableListItemKey' import ExpandableListItemLink from '../../components/ExpandableListItemLink' interface Props { isWebsite?: boolean reference: string } export function AssetSummary({ isWebsite, reference }: Props): ReactElement { const isHash = Utils.isHexString(reference) && reference.length === 64 return ( <> {isHash && } {!isHash && } The Swarm Gateway is graciously provided by the Swarm Foundation. This service is under development and provided for testing purposes only. Learn more at{' '} https://gateway.ethswarm.org/. ) }