Components
Avatar
Documentation for the Avatar component.
Avatar
Preview


The Avatar component is built with React Aria and styled using StyleX.
Import
import { Avatar } from '@moul-dev/ui';Usage
Here is a basic example of how to use the Avatar component:
import { Avatar } from '@moul-dev/ui';
export default function Example() {
return (
<Avatar>
{/* Component content */}
</Avatar>
);
}