import { Reference } from '@ethersphere/bee-js'
import { Box } from '@mui/material'
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({ reference }: Props): ReactElement {
const isHash = reference ? Reference.isValid(reference) : false
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/.
>
)
}