import { cn } from '../../utils'
import { TextLink } from '../Link'
import { Typography } from '../Typography'
export interface HexAddressProps {
children: string
href?: string
className?: string
}
export const HexAddress = ({ children, href, className }: HexAddressProps) => {
if (!href) {
return (
{children}
)
}
return (
{children}
)
}