import { AIAssistBotConfiguration, AIAssistBotStyle, AIBotMessageBubbleStyle, AISenderMessageBubbleStyle } from "@cometchat/uikit-shared";
import { AvatarStyle, MessageInputStyle } from "@cometchat/uikit-elements";
const customAssistBotStyle: AIAssistBotStyle = new AIAssistBotStyle({
titleFont: "20px Arial, sans-serif"
});
const customBotMessageBubbleStyle: AIBotMessageBubbleStyle = new AIBotMessageBubbleStyle({
textFont: "20px Arial, sans-serif"
});
const customSenderMessageBubbleStyle: AISenderMessageBubbleStyle = new AISenderMessageBubbleStyle({
textFont: "20px Arial, sans-serif"
});
const customMessageInputStyle: MessageInputStyle = new MessageInputStyle({
textFont: "20px Arial, sans-serif"
});
const customAvatarStyle: AvatarStyle = new AvatarStyle({
borderRadius: "24px"
});
configuration = new AIAssistBotConfiguration({
assistBotStyle: customAssistBotStyle,
botMessageBubbleStyle: customBotMessageBubbleStyle,
senderMessageBubbleStyle: customSenderMessageBubbleStyle,
messageInputStyle: customMessageInputStyle,
avatarStyle: customAvatarStyle
});