You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
General rule: if the component props get spread ({...rest}) onto a HTML element, the component should extend the types of said HTML element. In this case, we just need to use ButtonHTMLAttributes<HTMLButtonElement> where HTMLAttributes<HTMLDivElement> was previously.
#4135 changed the base element of
EuiStepHorizontal
from adiv
to abutton
, but the base element types were removed rather than converted.Need to reinstate the type extensions with the correct element.
The text was updated successfully, but these errors were encountered: