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