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
29 lines (28 loc) • 1.43 kB
TypeScript
import { BaseStyle, BaseStyleInterface, BorderStyleInterface, FontStyleInterface } from "../shared";
export interface GroupScopeStyleInterface extends BaseStyleInterface {
selectedOptionTextFont?: FontStyleInterface;
selectedOptionTextColor?: string;
selectedOptionBackgroundColor?: string;
selectedOptionBorder?: BorderStyleInterface;
selectedOptionBorderRadius?: number;
arrowIconTint?: string;
optionTextFont?: FontStyleInterface;
optionTextColor?: string;
optionBackgroundColor?: string;
optionBorder?: BorderStyleInterface;
optionBorderRadius?: number;
}
export declare class GroupScopeStyle extends BaseStyle {
selectedOptionTextFont?: FontStyleInterface;
selectedOptionTextColor?: string;
selectedOptionBackgroundColor?: string;
selectedOptionBorder?: BorderStyleInterface;
selectedOptionBorderRadius?: number;
arrowIconTint?: string;
optionTextFont?: FontStyleInterface;
optionTextColor?: string;
optionBackgroundColor?: string;
optionBorder?: BorderStyleInterface;
optionBorderRadius?: number;
constructor({ width, height, backgroundColor, border, borderRadius, selectedOptionTextFont, selectedOptionTextColor, selectedOptionBackgroundColor, selectedOptionBorder, selectedOptionBorderRadius, arrowIconTint, optionTextFont, optionTextColor, optionBackgroundColor, optionBorder, optionBorderRadius, }: GroupScopeStyleInterface);
}