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 (
{email}
Profile created successfully