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
User props such as class or children aren't being passed down to returned buttonProps.
The button doesn't seem clickable with Enter too..
exportconstButton: ParentComponent<JSX.IntrinsicElements['button']&AriaButtonProps>=props=>{letref!: HTMLButtonElementconst{ buttonProps }=createButton(props,()=>ref)return<button{...buttonProps}ref={ref}/>};// class and children aren't being applied<Buttonclass="btn">Hello</Button>
User props such as
class
orchildren
aren't being passed down to returnedbuttonProps
.The button doesn't seem clickable with Enter too..
repro: https://stackblitz.com/edit/createbutton-props-issue?file=index.tsx
The text was updated successfully, but these errors were encountered: