Skip to content

@aws-amplify/ui@6.6.4

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 16 Oct 18:16
· 5 commits to main since this release
d52a6f3

Patch Changes

  • #5827 ac7cb271a Thanks @dbanksdesign! - chore(ai): add theming for AIConversation

    const theme = createTheme({
      tokens: {
        components: {
          aiConversation: {},
        },
      },
    });
    const aiConversationTheme = defineComponentTheme({
      name: 'ai-conversation',
      theme(tokens) {
        return {
          _element: {
            message: {
              color: tokens.colors.font.tertiary,
            },
          },
        };
      },
    });