hh-ui-components
Version:
16 lines (15 loc) • 533 B
TypeScript
/// <reference types="react" />
interface QuickBuyProps {
variants?: "primary" | "secondary" | "tertiary";
type?: "button";
color?: "default" | "black" | "white";
size?: "default" | "small" | "medium" | "large";
id?: string;
ariaLabel?: string;
label: string;
className?: string;
disabled?: boolean;
onClick?: () => void;
}
export declare const QuickBuy: ({ variants, type, color, id, ariaLabel, size, label, className, disabled, onClick, ...props }: QuickBuyProps) => JSX.Element;
export {};