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) • 690 B
JavaScript
import { h } from "@stencil/core";
import "../.././stories/Components/MessageBubble/VideoMessageBubble/VideoMessageBubble";
class ChatVideoMessageBubble {
render() {
return (h("div", { key: '0effed36d5ddb6413101f77213720f6ddf6f59ee' }, h("video-message", { key: 'e79dba2f891bd579fc362068805e62ca6c0cae6e', bgColor: "#EFF1FA", borderRadius: "6px", padding: "10px 10px 25px 10px", videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4", time: new Date().toISOString() })));
}
static get is() { return "chat-video-message-bubble"; }
static get encapsulation() { return "shadow"; }
}
export { ChatVideoMessageBubble };
//# sourceMappingURL=ChatVideoMessageBubble.js.map