@cross-nft-marketplace/auction-house-nft-components
Version:
NFT Media Rendering Components
16 lines (15 loc) • 860 B
TypeScript
/// <reference types="react" />
import { NFTFullPage } from "./NFTFullPage";
declare const FullComponents: {
AuctionInfo: ({ className, }: import("../utils/StyleTypes").StyleProps) => JSX.Element;
BidHistory: ({ className, }: import("../utils/StyleTypes").StyleProps) => JSX.Element;
MediaInfo: ({ a11yIdPrefix, className }: {
a11yIdPrefix?: string | undefined;
} & import("../utils/StyleTypes").StyleProps) => JSX.Element;
ProofAuthenticity: ({ className }: import("../utils/StyleTypes").StyleProps) => JSX.Element;
MediaFull: ({ a11yIdPrefix, className, }: {
a11yIdPrefix?: string | undefined;
} & import("../utils/StyleTypes").StyleProps) => JSX.Element;
NFTProperties: ({ className }: import("../utils/StyleTypes").StyleProps) => JSX.Element | null;
};
export { FullComponents, NFTFullPage };