import { cn } from '../../utils' import { Typography } from '../Typography' import { HexAddress } from './HexAddress' type Props = { hash: string type?: string txUrl?: string } export const TransactionWithType = ({ hash, type, txUrl }: Props) => (
Request label {type || 'Request'}
Transaction hash {hash}
)