@rohitninawe/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
16 lines (15 loc) • 519 B
text/typescript
import { FontStyleInterface, BorderStyleInterface } from "../../shared";
import { AIButtonsStyle } from "../utils";
export class AISmartRepliesStyle extends AIButtonsStyle {
buttonTextColor?:string;
buttonTextFont?:FontStyleInterface;
buttonBorder?:BorderStyleInterface;
buttonBorderRadius?:number;
buttonHeight?:string;
buttonWidth?:string;
buttonBackgroundColor?:string;
constructor(props: Partial<AIButtonsStyle>) {
super({...props})
Object.assign(this, props);
}
}