
Display a Lens Protocol user profile with customizable styling, size options, and interactive features like following/unfollowing.
Enter a Lens handle (without @)
Enter an Ethereum address (overrides Lens handle if both provided)
Custom font size (12px, 1rem, etc.)
import { Account, Theme, Size } from "lens-quick-widgets"
<Account
localName="stani"
theme={Theme.light}
size={Size.medium}
onAccountLoad={(account) => console.log("Account loaded:", account)}
onClick={(account, stats) => console.log("Account clicked:", account, stats)}
onFollowed={() => console.log("Account followed/unfollowed")}
/><iframe
src="https://lens-quick-widgets-web.vercel.app/embed/account?localName=stani&theme=light&size=medium"
width="100%"
height="300px"
style={{border: 'none'}}>
</iframe>