mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 05:56:59 +00:00
13 lines
414 B
TypeScript
13 lines
414 B
TypeScript
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>
|
|
);
|
|
}
|