@mui/base
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
12 lines • 507 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["ownerState"];
import * as React from 'react';
export function prepareForSlot(Component) {
return /*#__PURE__*/React.forwardRef(function Slot(props, ref) {
const other = _objectWithoutPropertiesLoose(props, _excluded);
return /*#__PURE__*/React.createElement(Component, _extends({}, other, {
ref
}));
});
}