Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 22 lines 485 B view raw
1import { UserIcon } from "@heroicons/react/24/outline"; 2import cn from "@/helpers/cn"; 3 4interface YourAccountProps { 5 className?: string; 6} 7 8const YourAccount = ({ className = "" }: YourAccountProps) => { 9 return ( 10 <div 11 className={cn( 12 "flex w-full items-center space-x-1.5 text-gray-700 text-sm dark:text-gray-200", 13 className 14 )} 15 > 16 <UserIcon className="size-4" /> 17 <div>Your account</div> 18 </div> 19 ); 20}; 21 22export default YourAccount;