Introducing AlienX extension – The next evolution of UI development.Check it out on VS Code
Enjoy AlienUI React? Give it a star on Github ⭐
A celestial avatar for profile representation
An avatar for identification
import React from "react";
const Avatar = () => {
return (
<div className="w-16 h-16 rounded-full overflow-hidden bg-gray-200 flex justify-center items-center">
<img
src="/images/alien1.avif"
alt="Avatar Image"
width={64}
height={64}
className="object-cover"
/>
</div>
);
};
export default Avatar;
import React from "react";
import Avatar from "./components/comp/Avatar/GalaxyAvatar";
const App = () => {
return (
<div>
<Avatar />
</div>
);
};
export default App;
An avatar for profile identification on earth
Good morning
Zyphorax
import React from "react";
import { PiAlienBold } from "react-icons/pi";
const Avatar = () => {
return (
<div className="flex items-center gap-2">
<div className="w-16 h-16 rounded-full overflow-hidden bg-gray-200 flex justify-center items-center">
<img
src="/images/alien1.avif"
alt="Avatar Image"
width={64}
height={64}
className="object-cover"
/>
</div>
<div>
<p className="text-xs text-gray-700">Good morning</p>
<div className="flex items-center">
<p className="font-semibold text-base mr-1">Zyphorax</p>
<PiAlienBold />
</div>
</div>
</div>
);
};
export default Avatar;
import React from "react";
import Avatar from "./components/comp/Avatar/EarthAvatar";
const App = () => {
return (
<div>
<Avatar />
</div>
);
};
export default App;