
Display a customizable list of Lens Protocol accounts with various filtering options, pagination, and interactive features.
Search for accounts by name or handle
Press Enter to add multiple handles
Show followers of a specific handle
Show accounts followed by a specific handle
Show accounts managed by a specific address
Custom font size (12px, 1rem, etc.)
import { AccountsList, PageSize, AccountsOrderBy, FollowersOrderBy, FollowingOrderBy, Theme, Size } from "lens-quick-widgets"
<AccountsList
theme={Theme.light}
accountSize={Size.small}
pageSize={PageSize.Ten}
orderBy={AccountsOrderBy.BestMatch}
followersOrderBy={FollowersOrderBy.AccountScore}
followingOrderBy={FollowingOrderBy.AccountScore}
onAccountClick={(account) => console.log("Account clicked:", account)}
onFollowed={() => console.log("Account followed/unfollowed")}
/><iframe
src="https://lens-quick-widgets-web.vercel.app/embed/accounts-list?theme=light&accountSize=small&pageSize=TEN&orderBy=BEST_MATCH&followersOrderBy=ACCOUNT_SCORE&followingOrderBy=ACCOUNT_SCORE"
width="100%"
height="600px"
style={{border: 'none'}}>
</iframe>