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
{{ message }}
This repository has been archived by the owner on May 10, 2023. It is now read-only.
Describe the bug
I want to do this:
`
import { SelectMenu as SelectMenuBumbag, applyTheme } from 'bumbag';
const SelectMenu = applyTheme(SelectMenuBumbag, {
styles: {
base: p => {
return {
width: p.autoWidth ? 'auto' : '100%',
};
},
},
Button: {
styles: {
base: p => {
return {
display: p.autoWidth ? 'inline-flex' : 'flex',
};
},
},
},
defaultProps: {},
});
export default SelectMenu;
`
But the styles of the SelectMenu Button was not apply.
The text was updated successfully, but these errors were encountered: