@heymarco/next-auth
Version:
A complete authentication solution for web applications.
13 lines (12 loc) • 796 B
TypeScript
import { default as React } from 'react';
import { IconProps, InputProps, ListItemProps, ListProps, TooltipProps } from '@reusable-ui/components';
export interface FieldUsernameProps {
isActiveSection: boolean;
isActionApplied: boolean;
usernameInputComponent?: React.ReactComponentElement<any, InputProps<Element>>;
usernameTooltipComponent?: React.ReactComponentElement<any, TooltipProps<Element>> | null;
usernameValidationListComponent?: React.ReactComponentElement<any, ListProps<Element>>;
usernameValidationListItemComponent?: React.ReactComponentElement<any, ListItemProps<Element>>;
usernameValidationIconComponent?: React.ReactComponentElement<any, IconProps<Element>>;
}
export declare const FieldUsername: (props: FieldUsernameProps) => React.JSX.Element;