@oxyhq/services
Version:
Reusable OxyHQ module to handle authentication, user management, karma system, device-based session management and more 🚀
18 lines • 457 B
TypeScript
import type React from 'react';
interface ProfileCardProps {
user: {
username: string;
email?: string;
name?: {
full?: string;
};
avatar?: string;
};
theme: 'light' | 'dark';
onEditPress?: () => void;
onClosePress?: () => void;
showCloseButton?: boolean;
}
declare const ProfileCard: React.FC<ProfileCardProps>;
export default ProfileCard;
//# sourceMappingURL=ProfileCard.d.ts.map