// Copyright 2017-2025 @pezkuwi/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import { AddressSmall } from '@pezkuwi/react-components'; interface Props { className?: string; value: string; } function Account ({ className, value }: Props): React.ReactElement { return ( ); } export default React.memo(Account);