Skip to content

Commit

Permalink
Fix missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnblk committed Feb 22, 2018
1 parent 109e721 commit ce1898a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component.js
Expand Up @@ -19,7 +19,7 @@ module.exports = C => (...args) => {
next.className,
...args.map(a => typeof a === 'function' ? a(styleProps) : a)
.filter(s => !!s)
.map(s => cxs(s))
.map(s => cxs(s)),
cxs(props.css || {})
].join(' ').trim()

Expand Down

0 comments on commit ce1898a

Please sign in to comment.