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) 737 B
import { h } from "@stencil/core"; import "../.././stories/Components/MessageBubble/DocumentMessageBubble/DocumentMessageBubble"; class ChatDocumentMessageBubble { render() { return (h("div", { key: '90422698772f6b36980a6655c077898cf0f6a121' }, h("document-message", { key: '76351214db20f28d3c4aa95f34ac650b0b7681d4', bgColor: '#EFF1FA', borderRadius: "6px", time: new Date().toISOString(), docName: 'Somesomsomesomesome', width: "200px", height: "80px", documentNamePadding: "10px 7px", padding: "10px" }))); } static get is() { return "chat-document-message-bubble"; } static get encapsulation() { return "shadow"; } } export { ChatDocumentMessageBubble }; //# sourceMappingURL=ChatDocumentMessageBubble.js.map