@basic-ui/material 1.0.0-alpha.19 → 1.0.0-alpha.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4094,26 +4094,15 @@ const Select$1 = /*#__PURE__*/react$1.forwardRef(({
4094
4094
  ...props
4095
4095
  });
4096
4096
  });
4097
- const SelectButtonInner = /*#__PURE__*/react$1.forwardRef(({
4098
- innerAs = 'div',
4099
- ...props
4100
- }, forwardedRef) => {
4101
- const InputButton = Input;
4102
- return /*#__PURE__*/jsxRuntime.jsx(InputButton, {
4103
- as: innerAs,
4104
- ref: forwardedRef,
4105
- tabIndex: 0,
4106
- ...props
4107
- });
4108
- });
4109
4097
  const SelectButton = /*#__PURE__*/react$1.forwardRef(({
4110
- as,
4098
+ as = 'div',
4111
4099
  children,
4112
4100
  ...props
4113
4101
  }, ref) => /*#__PURE__*/jsxRuntime.jsx(core.MenuButton, {
4114
- as: SelectButtonInner,
4102
+ as: Input,
4115
4103
  innerAs: as,
4116
4104
  ref: ref,
4105
+ tabIndex: 0,
4117
4106
  ...props,
4118
4107
  children: children
4119
4108
  }));