import { h, Component } from 'preact'; import {mobileClosedMessageAvatarStyle, closedChatAvatarImageStyle} from './style'; import { IConfiguration } from '../typings'; export default class ChatFloatingButton extends Component { render({onClick, conf}: IChatFloatingButtonProps, {}) { return (
{(conf.bubbleAvatarUrl === '') ? : ((conf.bubbleAvatarUrl.indexOf('/')!==-1) ? :

{conf.bubbleAvatarUrl}
) }
); } } interface IChatFloatingButtonProps { onClick: any, conf: IConfiguration }