decentraland-ui
Version:
Decentraland's UI components and styles
12 lines (11 loc) • 417 B
TypeScript
import React, { ReactNode } from 'react';
import './NotificationItemImage.css';
export interface NotificationItemImageProps {
backgroundColor?: string;
image: string | ReactNode;
icon?: ReactNode;
}
/**
* @deprecated Should start using the same component migrated to UI2.
*/
export default function NotificationItemImage({ image, backgroundColor, icon }: NotificationItemImageProps): React.JSX.Element;