@braineet/ui
Version:
Braineet design system
22 lines • 1.22 kB
JavaScript
var _excluded = ["label", "children"];
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); }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
import React from 'react';
import { ComboboxGroup as BaseComboboxGroup, ComboboxGroupLabel } from 'ariakit/combobox';
import Label from '../label';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
export var ComboboxGroup = function ComboboxGroup(_ref) {
var label = _ref.label,
children = _ref.children,
props = _objectWithoutPropertiesLoose(_ref, _excluded);
return /*#__PURE__*/_jsxs(BaseComboboxGroup, _extends({}, props, {
children: [label && /*#__PURE__*/_jsx(Label, {
forwardedAs: ComboboxGroupLabel,
size: "xs",
fontFamily: "display",
color: "black20",
margin: "1rem 0 0.5rem 0.75rem",
children: label
}), children]
}));
};