LoginItem.d.ts 292 Bytes
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1 2 3 4 5 6 7 8 9 10 11
import * as React from 'react';
export interface ILoginItemProps {
  name?: string;
  rules?: any[];
  style?: React.CSSProperties;
  onGetCaptcha?: () => void;
  placeholder?: string;
  buttonText?: React.ReactNode;
}

export class LoginItem extends React.Component<ILoginItemProps, any> {}