UNPKG

isomtrik-quickchat

Version:

isomtrik-quickchat is a lightweight, real-time chat component built with Stencil JS. It is designed to be seamlessly integrated into web applications, offering customizable and responsive chat functionalities. The module supports both CommonJS and ES modu

12 lines (11 loc) 771 B
import { h } from "@stencil/core"; import "../.././stories/Components/MessageBubble/ImageMessageBubble/ImageMessageBubble"; class ChatImageMessageBubble { render() { return (h("div", { key: '8d294e74c81ca0649ea5fcc474369d8854ce708d' }, h("image-message", { key: '109475ef1960ecaa111f03a8596636292969d316', bgColor: '#EFF1FA', imageSrc: 'https://i.etsystatic.com/7251436/r/il/4fc56c/5398499035/il_570xN.5398499035_rnzx.jpg', width: '200px', height: 'fit-content', padding: '10px 10px 15px 10px', borderRadius: "6px", time: new Date().toISOString() }))); } static get is() { return "chat-image-message-bubble"; } static get encapsulation() { return "shadow"; } } export { ChatImageMessageBubble }; //# sourceMappingURL=ChatImageMessageBubble.js.map