UNPKG
ember-emotion
Version:
latest (5.0.0)
5.0.0
4.0.3
4.0.2
4.0.1
4.0.0
3.0.0
2.0.0
1.3.0
1.2.0
1.1.0
1.0.0
Work with emotion.js in Ember
alexlafroscia.com/ember-emotion/
alexlafroscia/ember-emotion
ember-emotion
/
addon
/
helpers
/
css.js
9 lines
(6 loc)
•
201 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ helper }
from
'@ember/component/helper'
;
import
{ css
as
emotionCss }
from
'emotion'
;
export
function
css
(
params, hash
) {
return
emotionCss
(...params, hash); }
export
default
helper
(css);