UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

13 lines (12 loc) 487 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; } export default function NotificationItem({ image, timestamp, isNew, children, locale }: React.PropsWithChildren<NotificationItemProps>): JSX.Element; export {};