react-native-zohosalesiq-mobilisten
Version:
A React Native module for the ZohoSalesIQ Mobilisten SDK
23 lines (22 loc) • 1.09 kB
text/typescript
import { SIQArticleMessageTheme } from "./SIQArticleMessageTheme"
import { SIQAudioPlayerTheme } from "./SIQAudioPlayerTheme"
import { SIQFileMessageTheme } from "./SIQFileMessageTheme"
import { SIQInfoMessageTheme } from "./SIQInfoMessageTheme"
import { SIQInputCardTheme } from "./SIQInputCardTheme"
import { SIQMessageCommonTheme } from "./SIQMessageCommonTheme"
import { SIQSelectionComponentTheme } from "./SIQSelectionComponentTheme"
import { SIQSkipActionButtonTheme } from "./SIQSkipActionButtonTheme"
import { SIQSliderCardTheme } from "./SIQSliderCardTheme"
import { SIQSuggestionTheme } from "./SIQSuggestionTheme"
export class SIQMessageTheme {
Common = new SIQMessageCommonTheme()
Suggestion = new SIQSuggestionTheme()
SkipActionButton = new SIQSkipActionButtonTheme()
AudioPlayer = new SIQAudioPlayerTheme()
Selection = new SIQSelectionComponentTheme()
InputCard = new SIQInputCardTheme()
Slider = new SIQSliderCardTheme()
InfoMessage = new SIQInfoMessageTheme()
Article = new SIQArticleMessageTheme()
File = new SIQFileMessageTheme()
}