import React from 'react' import {Box, BoxProps, Stack, Typography, useTheme} from '@mui/material' import {handleUri} from '../helpers/helper' import {AssetInterface, CollectionInterface} from '../interfaces' import {Iconfont} from './icon' import {SquareBox} from './style' interface AssetCardProps extends BoxProps { asset: AssetInterface | undefined collection: CollectionInterface | undefined } export const AssetCard = ({asset, collection, ...props}: AssetCardProps) => { const theme = useTheme() return ( {'asset'} {collection?.name} {asset?.name} ) }