Does anyone have a full working example of styling...
# react
s
Does anyone have a full working example of styling a mui-base component, by any chance? I am trying to adapt this: https://mui.com/base/react-select/#UnstyledSelectIntroduction.tsx. One issue I encountered is the fact that classes like
SelectUnstyledProps
should be an instance of
PropsWithRef
, but this is not the case in the Kotlin wrappers.
s
Yeah I'm using that. But I want to wrap it in a
ForwardRef
. In TS this is possible, but not with the kotlin wrappers because
SelectUnstyledProps
is not an instance of
PropsWithRef
, but
ForwardRef
requires this
Should I file an issue?