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
32 lines (31 loc) • 808 B
TypeScript
import { BaseStyle, FontStyle } from "../../base";
export interface FileBubbleStyleInterface extends BaseStyle {
/**
* tint for icon
*/
iconTint?: string;
/**
* font style for title
*/
titleFont?: FontStyle;
/**
* color for title
*/
titleColor?: string;
/**
* font style for subtitle
*/
subtitleFont?: FontStyle;
/**
* color for subtitle
*/
subtitleColor?: string;
}
export declare class FileBubbleStyle extends BaseStyle {
iconTint: string;
subtitleColor: string;
subtitleFont: FontStyle;
titleColor: string;
titleFont: FontStyle;
constructor({ height, width, backgroundColor, border, borderRadius, iconTint, subtitleColor, subtitleFont, titleColor, titleFont, }: FileBubbleStyleInterface);
}