@braineet/ui
Version:
Braineet design system
11 lines • 640 B
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { ComboboxItem as BaseComboboxItem } from 'ariakit/combobox';
import { Option } from '../option';
import { jsx as _jsx } from "react/jsx-runtime";
export var ComboboxItem = /*#__PURE__*/React.forwardRef(function (props, ref) {
return /*#__PURE__*/_jsx(Option, _extends({
as: BaseComboboxItem,
ref: ref
}, props));
});