diff --git a/src/routes/safe/components/Balances/AssetTableCell/index.tsx b/src/routes/safe/components/Balances/AssetTableCell/index.tsx index 6248b366ea..ef4058b938 100644 --- a/src/routes/safe/components/Balances/AssetTableCell/index.tsx +++ b/src/routes/safe/components/Balances/AssetTableCell/index.tsx @@ -1,21 +1,27 @@ import { ReactElement } from 'react' +import { ExplorerButton } from '@gnosis.pm/safe-react-components' +import styled from 'styled-components' import Block from 'src/components/layout/Block' import Img from 'src/components/layout/Img' import Paragraph from 'src/components/layout/Paragraph' import { setImageToPlaceholder } from 'src/routes/safe/components/Balances/utils' +import { getExplorerInfo } from 'src/config' +import { BalanceData } from '../dataFetcher' -const AssetTableCell = (props): ReactElement => { - const { asset } = props +const StyledParagraph = styled(Paragraph)` + margin-left: 10px; + margin-right: 10px; +` - return ( - - {asset.name} - - {asset.name} - - - ) -} +const AssetTableCell = ({ asset }: { asset: BalanceData['asset'] }): ReactElement => ( + + {asset.name} + + {asset.name} + + + +) export default AssetTableCell