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
12 lines (11 loc) • 314 B
TypeScript
/// <reference types="react" />
import { ImageType } from "../shared";
import { TabItemStyleInterface } from "./TabItemStyle";
export type TabItem = {
id: string | number;
title?: string;
icon?: ImageType;
isActive?: boolean;
childView: () => JSX.Element;
style?: TabItemStyleInterface;
};