@cross-nft-marketplace/auction-house-nft-components
Version:
NFT Media Rendering Components
10 lines (9 loc) • 390 B
TypeScript
/// <reference types="react" />
import type { IAddress } from "@cross-nft-marketplace/auction-house-nft-hooks";
import type { StyleProps } from "../utils/StyleTypes";
declare type AddressViewProps = {
address?: IAddress;
showChars?: number;
} & StyleProps;
export declare const AddressView: ({ address, showChars, className, }: AddressViewProps) => JSX.Element;
export {};