@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
24 lines (23 loc) • 658 B
TypeScript
import { SCUserType } from '@selfcommunity/types';
export interface AccountCredentialProps {
/**
* The user obj
*/
user?: SCUserType;
/**
* Overrides or extends the styles applied to the component.
* @default null
*/
className?: string;
/**
* Skip email validation when change email
* If skipEmailValidation=false it is required email validation (an email will be sent to the user)
* @default false
*/
skipEmailValidation?: boolean;
/**
* Any other properties
*/
[p: string]: any;
}
export default function AccountCredentials(props: AccountCredentialProps): JSX.Element;