Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / presets / B2B / SignInForm / typings.d.ts
Size: Mime:
import { ReactNode } from 'react';
export interface SignInFormRenderProp extends Function {
    (props: SignInFormProps): ReactNode;
}
export interface SignInFormProps {
    className?: string;
    children?: ReactNode;
    clientName?: string;
    renderHeading?: SignInFormRenderProp;
    renderFormFields?: SignInFormRenderProp;
    renderButtons?: SignInFormRenderProp;
    renderWrapper?: SignInFormRenderProp;
    onSignInClick?: Function;
    onCreateAccountClick?: Function;
    onForgotPasswordClick?: Function;
}