import { FC } from 'react'; import { LocalizeText } from '../../api'; import { DraggableWindow } from '../draggable-window'; import { NitroLayoutTrophyViewProps } from './NitroLayoutTrophyView.types'; export const NitroLayoutTrophyView: FC = props => { const { color = '', message = '', date = '', senderName = '', customTitle = null, onCloseClick = null } = props; return (
{ LocalizeText('widget.furni.trophy.title') }
{ customTitle &&
{ customTitle }
} { message }
{ date }
{ senderName }
); }