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