UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

19 lines (16 loc) 414 B
import { FontStyle } from "../../base"; export interface LabelStyleInterface { labelColor?: string; labelFont?: FontStyle; } export class LabelStyle { labelFont?: FontStyle; labelColor?: string; constructor({ labelFont = new FontStyle({}), labelColor = "#000000", }: LabelStyleInterface) { this.labelFont = labelFont; this.labelColor = labelColor; } }