UNPKG

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

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