UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

9 lines (8 loc) 288 B
import { Rarity } from '@dcl/schemas'; interface NotificationItemNFTLinkProps { link: string; rarity: Rarity; name: string; } declare const NotificationItemNFTLink: ({ link, rarity, name }: NotificationItemNFTLinkProps) => JSX.Element; export default NotificationItemNFTLink;