UNPKG

@elsikora/x-captcha-react

Version:

React components for X-Captcha service

11 lines (10 loc) 460 B
import type { ICaptchaWidgetProperties } from "./captcha-widget-properties.interface"; /** * Interface for captcha theme properties */ export interface ICaptchaThemeProperties extends Omit<ICaptchaWidgetProperties, "apiUrl" | "challengeType" | "height" | "language" | "onError" | "onVerify" | "powSolver" | "publicKey" | "secretKey" | "shouldShowBrandName" | "width"> { /** * Button color theme (for CaptchaForm) */ buttonColor?: string; }