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