matrix-react-sdk
Version:
SDK for matrix.org using React
12 lines (11 loc) • 364 B
TypeScript
import React from "react";
interface UserProfileSettingsProps {
externalAccountManagementUrl?: string;
canSetDisplayName: boolean;
canSetAvatar: boolean;
}
/**
* A group of settings views to allow the user to set their profile information.
*/
declare const UserProfileSettings: React.FC<UserProfileSettingsProps>;
export default UserProfileSettings;