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