diff --git a/src/__tests__/__snapshots__/documenter.test.ts.snap b/src/__tests__/__snapshots__/documenter.test.ts.snap index 4e3c831..cd57b96 100644 --- a/src/__tests__/__snapshots__/documenter.test.ts.snap +++ b/src/__tests__/__snapshots__/documenter.test.ts.snap @@ -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": [ @@ -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": [ diff --git a/src/avatar/interfaces.ts b/src/avatar/interfaces.ts index b2cd1ad..69ea453 100644 --- a/src/avatar/interfaces.ts +++ b/src/avatar/interfaces.ts @@ -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; diff --git a/src/chat-bubble/interfaces.ts b/src/chat-bubble/interfaces.ts index d564f2a..c1fc496 100644 --- a/src/chat-bubble/interfaces.ts +++ b/src/chat-bubble/interfaces.ts @@ -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;