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,12 @@
import { MagnifyingGlassIcon } from '@heroicons/react/24/outline';
import clsx from 'clsx';
export default function OpenSearch({ className }: { className?: string }) {
return (
<div className="relative flex h-11 w-11 items-center justify-center text-high-contrast">
<MagnifyingGlassIcon
className={clsx('h-5 transition-all ease-in-out hover:scale-110 ', className)}
/>
</div>
);
}