We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
combineProps
After upgrading Solid to 1.6 combineProps stopped working when called inline with the spread
// Pre Solid 1.6 <span {...combineProps(a, b)} /> // Solid 1.6 const combined = combineProps(a, b); <span {...combined} />