UNPKG

@revenuecat/purchases-ui-js

Version:

Web components for Paywalls. Powered by RevenueCat

14 lines (13 loc) 452 B
import type { BrandingAppearance } from "../utils/branding"; export interface UIButtonProps { onclick?: (event: any) => void; children?: unknown; intent?: "primary"; disabled?: boolean; testId?: string | undefined; type?: "reset" | "submit" | "button" | null | undefined; loading?: boolean; brandingAppearance?: BrandingAppearance; styleOverrides?: string; style?: Record<string, string> | string | undefined; }