Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/__tests__/__snapshots__/documenter.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ Use it to define initials that uniquely identify the avatar's owner.",
"type": "boolean",
},
{
"description": "An object containing CSS properties to customize the avatar's visual appearance.
Refer to the [style](/components/avatar/?tabId=style) tab for more details.",
"inlineType": {
"name": "AvatarProps.Style",
"properties": [
Expand Down Expand Up @@ -216,6 +218,8 @@ If avatar is being used, set its \`loading\` state to true.",
"type": "boolean",
},
{
"description": "An object containing CSS properties to customize the chat bubble's visual appearance.
Refer to the [style](/components/chat-bubble/?tabId=style) tab for more details.",
"inlineType": {
"name": "ChatBubbleProps.Style",
"properties": [
Expand Down
2 changes: 2 additions & 0 deletions src/avatar/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ export interface AvatarProps {
imgUrl?: string;

/**
* An object containing CSS properties to customize the avatar's visual appearance.
* Refer to the [style](/components/avatar/?tabId=style) tab for more details.
* @awsuiSystem core
*/
style?: AvatarProps.Style;
Expand Down
2 changes: 2 additions & 0 deletions src/chat-bubble/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export interface ChatBubbleProps {
hideAvatar?: boolean;

/**
* An object containing CSS properties to customize the chat bubble's visual appearance.
* Refer to the [style](/components/chat-bubble/?tabId=style) tab for more details.
* @awsuiSystem core
*/
style?: ChatBubbleProps.Style;
Expand Down
Loading