UNPKG

@cross-nft-marketplace/auction-house-nft-components

Version:
10 lines (9 loc) 407 B
/// <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 {};