UNPKG
react-native-moengage-cards
Version:
latest (6.2.0)
6.2.0
6.1.0
6.0.5
6.0.4
6.0.3
6.0.2
6.0.1
6.0.0
5.1.1
5.1.0
5.0.3
5.0.2
5.0.1
5.0.0
4.0.0
3.1.0
3.0.2
3.0.1
3.0.0
2.1.0
2.0.1
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
Cards Module for the MoEngage Platform
react-native-moengage-cards
/
src
/
model
/
styles
/
ImageStyle.ts
16 lines
(13 loc)
•
287 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
WidgetStyle
from
"./WidgetStyle"
;
/** * Style attributes for an Image Widget. * *
@author
Abhishek Kumar *
@since
1.0.0 */
class
ImageStyle
extends
WidgetStyle
{
constructor
(
backgroundColor
:
string
) {
super
(backgroundColor); } }
export
default
ImageStyle
;