Skip to content

Commit

Permalink
fix: Access to domProps (#15)
Browse files Browse the repository at this point in the history
Closes #14
  • Loading branch information
d-corler authored Jul 30, 2020
1 parent e6bd6f1 commit 36df130
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ const createStyled = (tag, options = {}) => {
theme: injections.theme,
...parent.$evergarden
}
const domProps = { value }
const domProps = {
value,
...data.domProps
}

if (data.class) {
className += getRegisteredStyles(
Expand Down

0 comments on commit 36df130

Please sign in to comment.