import React from 'react'; interface ProfileCreatedProps { email: string; } /** * ProfileCreated widget displays a success message when a user profile is created. * Shows the email with an avatar containing the first letter of the email. */ export function ProfileCreated({ email }: ProfileCreatedProps) { // Extract first letter of email in uppercase const avatarLetter = email.charAt(0).toUpperCase(); return (
{/* Profile section with avatar and email */}
{/* Avatar with first letter */}
{avatarLetter}
{/* Email and success message */}

{email}

Profile created successfully

{/* Success checkmark icon */}
); }