mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 07:48:00 +00:00
34 lines
832 B
TypeScript
34 lines
832 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-query authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React from 'react';
|
|
|
|
import { useApi, useCall } from '@pezkuwi/react-hooks';
|
|
|
|
import FormatBalance from './FormatBalance.js';
|
|
|
|
interface Props {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
label?: React.ReactNode;
|
|
}
|
|
|
|
function TotalInactive ({ children, className = '', label }: Props): React.ReactElement<Props> | null {
|
|
const { api } = useApi();
|
|
const inactiveIssuance = useCall<string>(api.query.balances?.inactiveIssuance);
|
|
|
|
return (
|
|
<div className={className}>
|
|
{label || ''}
|
|
<FormatBalance
|
|
className={inactiveIssuance ? '' : '--tmp'}
|
|
value={inactiveIssuance || 1}
|
|
withSi
|
|
/>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default React.memo(TotalInactive);
|