WARNING: This component is in
Draft
status. This means that it is still in development and may have bugs or missing features. It is not intended to be used in production. You may use it for testing purposes.Avatar
An image element with a fallback for representing the user.
MA
import { component$ } from '@builder.io/qwik';
import { Avatar } from '~/components/ui';
export default component$(() => {
return (
<Avatar.Root>
<Avatar.Image src="https://github.com/mhevery.png" alt="@mhevery" />
<Avatar.Fallback>MA</Avatar.Fallback>
</Avatar.Root>
);
});