UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

13 lines (12 loc) 399 B
import { Rarity } from '@dcl/schemas'; import React from 'react'; interface NotificationItemNFTLinkProps { link: string; rarity: Rarity; name: string; } /** * @deprecated Should start using the same component migrated to UI2. */ declare const NotificationItemNFTLink: ({ link, rarity, name }: NotificationItemNFTLinkProps) => React.JSX.Element; export default NotificationItemNFTLink;