import * as React from 'react'; import { formatAccountToken } from '../lib/account'; import ClipboardLabel from './ClipboardLabel'; interface IAccountTokenLabelProps { accountToken: string; className?: string; } export default function AccountTokenLabel(props: IAccountTokenLabelProps) { return ( ); }