mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 16:07:01 +00:00
13 lines
442 B
TypeScript
13 lines
442 B
TypeScript
import { cn } from '@/lib/utils';
|
|
import { UserCircleIcon } from '@heroicons/react/24/outline';
|
|
|
|
export default function OpenUserMenu({ className }: { className?: string }) {
|
|
return (
|
|
<div className="relative flex h-8 w-8 items-center justify-center text-high-contrast lg:h-11 lg:w-11">
|
|
<UserCircleIcon
|
|
className={cn('h-5 stroke-current transition-all ease-in-out hover:scale-110 ', className)}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|