UNPKG

matrix-react-sdk

Version:
12 lines (11 loc) 364 B
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;