Skip to content

ChatBubbleOut

Display chat-bubble-out element

Importing

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

Component Usage

html
<tapsi-chat-bubble-out></tapsi-chat-bubble-out>
tsx
<ChatBubbleOut />

Properties

NameDescriptionTypeDefault Value
timestampThe timestamp of chat element.string""
avatar-srcThe source of the avatar image.string""
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/out";

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

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