import { h, Component } from 'preact'; import {desktopClosedMessageStyle, desktopIntroMessageStyle, desktopClosedMessageAvatarStyle, closedChatAvatarImageStyle} from './style'; export default class ChatTitleMsg extends Component { render({conf}: IChatTitleMsgProps,{}) { return (
{(conf.bubbleAvatarUrl === '') ? : ((conf.bubbleAvatarUrl.indexOf('/')!==-1) ? :

{conf.bubbleAvatarUrl}
) }
); } } interface IChatTitleMsgProps { conf: { bubbleAvatarUrl: string, bubbleBackground: string } }