// Copyright 2017-2019 @polkadot/ui-keyring authors & contributors // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. import React from 'react'; import styled from 'styled-components'; import IdentityIcon from '@polkadot/ui-identicon'; type Props = { address: string, className?: string, isUppercase: boolean, name: string, style?: { [index: string]: string } }; const Wrapper = styled.div` display: flex; flex-wrap: nowrap; justify-content: space-between; position: relative; white-space: nowrap; > .address { display: inline-block; flex: 1; font-family: monospace; margin-left: 1rem; opacity: 0.5; overflow: hidden; text-align: right; text-overflow: ellipsis; } > .icon { position: absolute; top: -9px; left: 0; } > .name { display: inline-block; flex: 1 0; margin-left: 3rem; overflow: hidden; text-overflow: ellipsis; &.uppercase { text-transform: uppercase; } } `; export default class KeyPair extends React.PureComponent { render () { const { address, className, isUppercase, name, style } = this.props; return (
{name}
{address}
); } }