@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
19 lines (18 loc) • 625 B
TypeScript
import { default as React } from 'react';
export type CustomCssContextType = {
landingBackgroundColor: string;
landingPrimaryFontColor: string;
landingBackgroundImage: string;
formBackgroundColor: string;
formPrimaryFontColor: string;
formButtonColor: string;
formButtonFontColor: string;
formLinkColor: string;
formH1FontColor: string;
formHelperFontColor: string;
formFont: string;
cssVariables: Object;
customStyles: string;
};
export declare const CustomCssContextEmpty: CustomCssContextType;
export declare const CustomCssContext: React.Context<CustomCssContextType>;