react-native-moengage-cards
Version:
Cards Module for the MoEngage Platform
19 lines (16 loc) • 327 B
text/typescript
/**
* Base style for all widgets.
*
* @author Abhishek Kumar
* @since 1.0.0
*/
abstract class WidgetStyle {
/**
* Background color of the Button.
*/
backgroundColor: string;
constructor(backgroundColor: string) {
this.backgroundColor = backgroundColor;
}
}
export default WidgetStyle;