react-native-moengage-cards
Version:
Cards Module for the MoEngage Platform
20 lines (17 loc) • 353 B
text/typescript
/**
* Style attributes of a [Container]
*
* @author Abhishek Kumar
* @since 1.0.0
*/
class ContainerStyle {
/**
* Background color of the container.
* @since 1.0.0
*/
backgroundColor: string;
constructor(backgroundColor: string) {
this.backgroundColor = backgroundColor;
}
}
export default ContainerStyle;