import { PerpAccount, ZERO_BN } from '@blockworks-foundation/mango-client' import SideBadge from './SideBadge' const PerpSideBadge = ({ perpAccount }: { perpAccount: PerpAccount }) => ( <> {perpAccount && !perpAccount.basePosition.eq(ZERO_BN) ? ( ) : ( '--' )} ) export default PerpSideBadge