UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

16 lines (15 loc) 565 B
import React from 'react'; import { NotificationItemImageProps } from './NotificationItemImage'; import './NotificationItem.css'; import { NotificationLocale } from './types'; interface NotificationItemProps { image: NotificationItemImageProps; timestamp: number; isNew: boolean; locale: NotificationLocale; } /** * @deprecated Should start using the same component migrated to UI2. */ export default function NotificationItem({ image, timestamp, isNew, children, locale }: React.PropsWithChildren<NotificationItemProps>): JSX.Element; export {};