Email Input Field - Copy this React, Tailwind Component to your project
import React from 'react'; // Since the request "vaishnaviw126@gmail.com" does not specify a component to create, // I'll demonstrate with a simple email display component using TailwindCSS for styling. const EmailDisplay = () => { return ( <div className="flex justify-center items-center h-screen bg-gray-100"> <div className="p-6 max-w-sm mx-auto bg-white rounded-xl shadow-lg flex items-center space-x-4"> <div className="flex-shrink-0"> <svg className="h-12 w-12 text-blue-500" fill="none" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" viewBox="0 0 24 24" stroke="currentColor" xmlns="http://www.w3.org/2000/svg"> <path d="M16 2a2 2 0 00-2 2v2H6a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2V8a2 2 0 00-2-2h-2V4a2 2 0 00-2-2zm0 4V4l4 4h-4z"/> </svg> </div> <div> <div className="text-xl font-medium text-black">Email</div> <p className="text-gray-500">vaishnaviw126@gmail.com</p> </div> </div> </div> ); }; export default EmailDisplay;
