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