In some cases when providing props to components, there is some non-compliant html attribute bleeding.
e.g.
display is passed to the html node because it's not destructured from the props before being passed to children.
Perhaps making use of shouldForwardProp will remedy this, and keep the HTML compliant.
In some cases when providing props to components, there is some non-compliant html attribute bleeding.
e.g.
displayis passed to the html node because it's not destructured from the props before being passed to children.Perhaps making use of
shouldForwardPropwill remedy this, and keep the HTML compliant.