File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-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 @@ -9,6 +9,7 @@ module React.Basic.Emotion
9
9
, elementKeyed
10
10
, css
11
11
, important
12
+ , keyframes
12
13
, nested
13
14
, merge
14
15
, str
@@ -134,6 +135,8 @@ foreign import css :: forall r. Homogeneous r StyleProperty => { | r } -> Style
134
135
135
136
foreign import important :: StyleProperty -> StyleProperty
136
137
138
+ foreign import keyframes :: forall r . Homogeneous r StyleProperty => { | r } -> StyleProperty
139
+
137
140
nested :: Style -> StyleProperty
138
141
nested = unsafeCoerce
139
142
You can’t perform that action at this time.
0 commit comments