mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 20:37:57 +00:00
20 lines
443 B
TypeScript
20 lines
443 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-params authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { Props } from '../types.js';
|
|
|
|
import React from 'react';
|
|
|
|
import BasicAccountIdBase from './BasicAccountIdBase.js';
|
|
|
|
function BasicAccountId32 (props: Props): React.ReactElement<Props> {
|
|
return (
|
|
<BasicAccountIdBase
|
|
{...props}
|
|
bytesLength={32}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default React.memo(BasicAccountId32);
|