Skip to content

ChatBubbleIn

Display chat-bubble-in element

Importing

ts
import "@tapsioss/web-components/chat-bubble/in";
ts
import { ChatBubbleIn } from "@tapsioss/react-components/ChatBubbleIn";

Component Usage

html
<tapsi-chat-bubble-in></tapsi-chat-bubble-in>
tsx
<ChatBubbleIn />

Properties

NameDescriptionTypeDefault Value
timestampThe timestamp of chat element.string""
statusThe status of the chat element."sent" | "seen" | "pending" | "failed""sent"
fully-roundedWhether or not the bubble should be fully rounded.booleanfalse

Slots

NameDescription
-The default slot for the content.

TIP

You can use slot names as variables:

ts
import { Slots } from "@tapsioss/web-components/chat-bubble/in";

console.log(Slots.DEFAULT); // ""
ts
import { ChatBubbleInSlots } from "@tapsioss/react-components";

console.log(ChatBubbleInSlots.DEFAULT); // ""