import {c, css, html} from "atomico"; export const ChatBubble = c(({ content, name, img, swap }) => { return html`
${name}
${name}
                    ${content}
                
`; }, { props: { swap: { type: String, reflect: true, }, content: { type: String, reflect: true, }, name: { type: String, reflect: true, }, img: { type: String, reflect: true, }, }, styles: css` @tailwind base; @tailwind components; @tailwind utilities; :host { display: block; width: 100%; } `, }); customElements.define("chat-bubble", ChatBubble);