@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
18 lines • 443 B
JavaScript
/**
* @class FontStyle
* @description
* @param {String} fontFamily
* @param {String} fontWeight
* @param {String} fontSize
*/
export class FontStyle {
fontFamily;
fontWeight;
fontSize;
constructor({ fontFamily = undefined, fontWeight = "normal", fontSize = 16, }) {
this.fontFamily = fontFamily;
this.fontWeight = fontWeight;
this.fontSize = fontSize;
}
}
//# sourceMappingURL=FontStyle.js.map