Closed ycmjason closed 1 month ago
Currently when passing in html props, e.g. id="hello", to a react icon component would cause the render to show 0="[object Object]". This is due to the fact that we are wrapping rest in [rest].
id="hello"
0="[object Object]"
rest
[rest]
This PR fixes that.
The latest updates on your projects. Learn more about Vercel for Git ↗︎
thank you for help!
Currently when passing in html props, e.g.
id="hello"
, to a react icon component would cause the render to show0="[object Object]"
. This is due to the fact that we are wrappingrest
in[rest]
.This PR fixes that.