UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

31 lines (28 loc) 739 B
import { BaseStyle, BaseStyleInterface, FontStyleInterface } from "../../base"; export interface CometChatCardStyleInterface extends BaseStyleInterface{ titleColor?: string, titleFont?: FontStyleInterface, } export class CometChatCardStyle extends BaseStyle { titleColor?: string titleFont?: FontStyleInterface constructor({ backgroundColor, border, borderRadius, height, titleColor, titleFont, width }: CometChatCardStyleInterface){ super({ height, backgroundColor, border, borderRadius, width }); this.titleColor = titleColor; this.titleFont = titleFont; } }