// Copyright 2017-2026 @pezkuwi/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import AccountName from '../AccountName.js'; import IdentityIcon from '../IdentityIcon/index.js'; import { styled } from '../styled.js'; interface Props { address: string; className?: string; isUppercase: boolean; name: string; style?: Record; } function KeyPair ({ address, className = '' }: Props): React.ReactElement { return (
{address}
); } const StyledDiv = styled.div` display: flex; flex-wrap: nowrap; justify-content: space-between; position: relative; white-space: nowrap; > .address { display: inline-block; flex: 1; font-size: var(--font-size-small); margin-left: 1rem; max-width: var(--width-shortaddr); min-width: var(--width-shortaddr); opacity: var(--opacity-light); overflow: hidden; text-align: right; text-overflow: ellipsis; } > .icon { position: absolute; top: -5px; left: 0; } > .name { display: inline-block; flex: 1 0; margin-left: 3rem; overflow: hidden; text-overflow: ellipsis; &.uppercase { text-transform: uppercase; } } `; export default React.memo(KeyPair);