UNPKG

@rohitninawe/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

35 lines 1.33 kB
import { BaseStyle } from "../../base"; export class ReactionListStyle extends BaseStyle { subtitleColor; subtitleFont; tailViewFont; activeEmojiBackgroundColor; sliderEmojiCountFont; sliderEmojiCountColor; sliderEmojiFont; errorTextColor; errorTextFont; loadingTint; separatorColor; constructor({ height, width, backgroundColor, border, borderRadius, subtitleColor, subtitleFont, tailViewFont, activeEmojiBackgroundColor, sliderEmojiCountFont, sliderEmojiCountColor, sliderEmojiFont, errorTextColor, errorTextFont, loadingTint, separatorColor }) { super({ backgroundColor, border, borderRadius, height, width }); this.subtitleColor = subtitleColor; this.subtitleFont = subtitleFont; this.tailViewFont = tailViewFont; this.activeEmojiBackgroundColor = activeEmojiBackgroundColor; this.sliderEmojiCountFont = sliderEmojiCountFont; this.sliderEmojiCountColor = sliderEmojiCountColor; this.sliderEmojiFont = sliderEmojiFont; this.errorTextColor = errorTextColor; this.errorTextFont = errorTextFont; this.loadingTint = loadingTint; this.separatorColor = separatorColor; } } //# sourceMappingURL=ReactionListStyle.js.map