@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
15 lines (14 loc) • 389 B
text/typescript
import { StyleProp, TextStyle } from "react-native";
/**
* MentionTextStyle
* Stores the styles for user mention.
* @param textStyle: TextStyle
* @param loggedInUserTextStyle: TextStyle
*/
export class MentionTextStyle {
textStyle?: StyleProp<TextStyle>;
loggedInUserTextStyle?: StyleProp<TextStyle>;
constructor(props: MentionTextStyle) {
Object.assign(this, props);
}
}