react-waitlist
Version:
A customizable waitlist form component for React applications
20 lines (19 loc) • 553 B
TypeScript
import { ThemeConfig } from './types';
/**
* Default theme configuration
*/
export declare const defaultTheme: ThemeConfig;
/**
* Tailwind CSS theme
*/
export declare const tailwindDefaultTheme: ThemeConfig;
/**
* Material UI theme
*/
export declare const materialUIDefaultTheme: ThemeConfig;
/**
* Merge user theme with default theme
* This function ensures that all required theme properties are present
* while giving absolute priority to user-defined properties
*/
export declare function mergeTheme(userTheme?: ThemeConfig): ThemeConfig;