@cpmech/gate-native
Version:
React Native for my Gate SignUp Component
24 lines (23 loc) • 735 B
TypeScript
import React from 'react';
import { LocalGateStore } from '@cpmech/gate';
import { IStyleButton, IStyleTypeA, IconKind } from '@cpmech/rncomps';
import { IFonts } from './GateSignUpView';
interface ILocalGateSignUpViewProps {
gate: LocalGateStore;
iniEmail?: string;
marginTop?: number;
colorIcon?: string;
colorText?: string;
colorLink?: string;
colorError?: string;
styleInput?: IStyleTypeA;
styleButton?: IStyleButton;
buttonHeight?: number;
buttonBorderRadius?: number;
buttonMinWidth?: number;
iconKind?: IconKind;
fonts?: IFonts;
ignoreErrors?: boolean;
}
export declare const LocalGateSignUpView: React.FC<ILocalGateSignUpViewProps>;
export {};