Test suspense in dynamic content manager

This commit is contained in:
Henrik Larsson
2023-08-10 15:16:45 +02:00
parent 6088aa98b9
commit 04477fe83a
34 changed files with 410 additions and 310 deletions

View File

@@ -0,0 +1,15 @@
import { UserCircleIcon } from '@heroicons/react/24/outline';
import clsx from 'clsx';
export default function OpenUserMenu({ className }: { className?: string }) {
return (
<div className="relative flex h-11 w-11 items-center justify-center text-high-contrast">
<UserCircleIcon
className={clsx(
'h-5 stroke-current transition-all ease-in-out hover:scale-110 ',
className
)}
/>
</div>
);
}