mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 00:40:58 +01:00
15 lines
359 B
TypeScript
15 lines
359 B
TypeScript
import { UnstyledButton } from "@mantine/core";
|
|
|
|
import { CurrentUserAvatar } from "~/components/user-avatar";
|
|
import { UserAvatarMenu } from "~/components/user-avatar-menu";
|
|
|
|
export const UserButton = () => {
|
|
return (
|
|
<UserAvatarMenu>
|
|
<UnstyledButton>
|
|
<CurrentUserAvatar size="md" />
|
|
</UnstyledButton>
|
|
</UserAvatarMenu>
|
|
);
|
|
};
|