@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
10 lines (9 loc) • 322 B
TypeScript
import { TextFieldProps } from '@mui/material';
export type UsernameTextFieldProps = {
/**
* Allows the field to accept an email format as well
*/
allowEmail?: boolean;
} & TextFieldProps;
declare const UsernameTextField: (props: UsernameTextFieldProps) => JSX.Element;
export default UsernameTextField;