@cross-nft-marketplace/auction-house-nft-components
Version:
NFT Media Rendering Components
10 lines (9 loc) • 407 B
TypeScript
/// <reference types="react" />
import type { StyleProps } from "../utils/StyleTypes";
declare type MediaThumbnailWrapperProps = {
children: React.ReactNode;
onClick?: (evt: React.MouseEvent<HTMLElement>) => void;
href?: string;
} & StyleProps;
export declare const MediaThumbnailWrapper: ({ children, onClick, href, className, }: MediaThumbnailWrapperProps) => JSX.Element;
export {};