mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 12:47:50 +00:00
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
import { UserIcon } from '@heroicons/react/24/outline';
|
|
|
|
const OpenProfile = () => {
|
|
return <UserIcon className="h-5 transition-all ease-in-out hover:scale-110" />;
|
|
};
|
|
|
|
export default OpenProfile;
|