UNPKG

@rohitninawe/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

36 lines 915 B
import { BaseStyle } from "../shared"; export class CardViewStyle extends BaseStyle { emptyStateTextFont; emptyStateTextColor = "#bcbcbc"; errorStateTextFont; errorStateTextColor = "#bcbcbc"; loadingStateTextFont; loadingStateTextColor = "#bcbcbc"; loadingIconTint = "#bcbcbc"; errorIconTint = "#bcbcbc"; emptyIconTint = "#bcbcbc"; boxShadow; constructor(props) { super({}); Object.assign(this, props); } } export class CardStyle extends BaseStyle { buttonTextColor; buttonTextFont; buttonBorder; buttonBorderRadius; buttonHeight; buttonWidth; buttonBackgroundColor; repliesTextFont; repliesTextBorder; repliesTextBorderRadius; repliesTextColor; repliesTextBackgroundColor; constructor(props) { super({}); Object.assign(this, props); } } //# sourceMappingURL=CardViewStyle.js.map