Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 22 lines 476 B view raw
1import { HandRaisedIcon } from "@heroicons/react/24/outline"; 2import cn from "@/helpers/cn"; 3 4interface SupportProps { 5 className?: string; 6} 7 8const Support = ({ className = "" }: SupportProps) => { 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 <HandRaisedIcon className="size-4" /> 17 <div>Support</div> 18 </div> 19 ); 20}; 21 22export default Support;