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