import { Box, Link, Skeleton, Typography } from '@mui/material' import { useTranslation } from 'react-i18next' import { Token } from '../../Token/Token.js' import { PreviewAvatar } from './NFT.style.js' import type { NFTProps } from './types.js' export const NFTBase: React.FC = ({ imageUrl, isLoading, collectionName, assetName, owner, token, }) => { const { t } = useTranslation() return ( {isLoading ? ( ) : ( )} {isLoading ? ( ) : ( {collectionName} )} {isLoading ? ( ) : ( {assetName} )} {isLoading ? ( ) : owner ? ( {t('main.ownedBy')}{' '} {owner.name} ) : null} ) }