import Identicon from "@polkadot/react-identicon"; import { formatAddress } from "../../../utils/format"; import CopyButton from "../CopyButton" import Button from "../../atoms/Button" import QRCode from "../../atoms/QRCode" export interface Props { name?: string, address: string, evmAddress?: string, source?: string, isSelected?: boolean, onSelect?: (...args: any[]) => any, className?: string } const Account = ({ name, address, evmAddress, source, isSelected, onSelect, className }: Props): JSX.Element => ( { isSelected &&
Selected
} ) export default Account