Components
Loading preview...
An image element with a fallback for representing the user.
npx shadcn@latest add https://21st.dev/r/shadcn/avatarimport { Avatar, AvatarImage } from "@/components/ui/avatar";
function ReverseOrder() {
return (
<div className="flex flex-row-reverse justify-end -space-x-3 space-x-reverse *:ring *:ring-background">
<Avatar>
<AvatarImage src="https://mynaui.com//avatars/avatar-04.jpg" />
</Avatar>
<Avatar>
<AvatarImage src="https://mynaui.com//avatars/avatar-05.jpg" />
</Avatar>
<Avatar>
<AvatarImage src="https://mynaui.com//avatars/avatar-06.jpg" />
</Avatar>
</div>
);
}
export { ReverseOrder }