File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -36,3 +36,5 @@ exports.global = Emotion.Global;
36
36
exports . css = _homogeneousDict => Emotion . css ;
37
37
38
38
exports . important = prop => typeof prop === "string" ? prop + " !important" : prop ;
39
+
40
+ exports . keyframes = _homogeneousDict => Emotion . keyframes ;
Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ module React.Basic.Emotion
8
8
, element
9
9
, elementKeyed
10
10
, css
11
+ , global
11
12
, important
13
+ , keyframes
12
14
, nested
13
15
, merge
14
16
, str
@@ -134,6 +136,8 @@ foreign import css :: forall r. Homogeneous r StyleProperty => { | r } -> Style
134
136
135
137
foreign import important :: StyleProperty -> StyleProperty
136
138
139
+ foreign import keyframes :: forall r . Homogeneous r StyleProperty => { | r } -> StyleProperty
140
+
137
141
nested :: Style -> StyleProperty
138
142
nested = unsafeCoerce
139
143
You can’t perform that action at this time.
0 commit comments