UNPKG

@rohitninawe/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

38 lines 950 B
import { AIBaseStyle } from "../AIBaseStyle"; export class AIAssistBotStyle extends AIBaseStyle { titleFont; titleColor = ""; subtitleFont; subtitleColor; closeIconTint = ""; sendIconTint = ""; buttonTextColor = ""; buttonTextFont; buttonBackground = ""; buttonBorderRadius; constructor(props) { super({}); Object.assign(this, props); } } class AITextMessageBubbleStyle extends AIBaseStyle { textFont = ""; textColor = ""; constructor(props) { super({}); Object.assign(this, props); } } export class AIBotMessageBubbleStyle extends AITextMessageBubbleStyle { constructor(props) { super({}); Object.assign(this, props); } } export class AISenderMessageBubbleStyle extends AITextMessageBubbleStyle { constructor(props) { super({}); Object.assign(this, props); } } //# sourceMappingURL=AIAssistBotStyle.js.map