react-native-chating-ui-kit
Version:
CometChat React Native UI Kit is a collection of custom UI Components designed to build text , chat and calling features in your application. The UI Kit is developed to keep developers in mind and aims to reduce development efforts significantly
23 lines (22 loc) • 602 B
TypeScript
import { Palette } from './Palette';
import { Typography } from './Typography';
/**
*
* CometChatTheme is a component useful to add style to different components.
* This component returns an JSON object of Palette and Typography
*
* @version 1.0.0
* @author CometChat
* @class CometChatTheme
* @param {Object} palette
* @param {Object} typography
*/
declare class CometChatTheme {
palette: Palette;
typography: Typography;
constructor({ palette, typography }: {
palette?: Palette;
typography?: Typography;
});
}
export { CometChatTheme, Palette, Typography };