decentraland-ui
Version:
Decentraland's UI components and styles
9 lines (8 loc) • 326 B
TypeScript
import { ReactNode } from 'react';
import './NotificationItemImage.css';
export interface NotificationItemImageProps {
backgroundColor?: string;
image: string | ReactNode;
icon?: ReactNode;
}
export default function NotificationItemImage({ image, backgroundColor, icon }: NotificationItemImageProps): JSX.Element;