@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
24 lines (20 loc) • 517 B
JavaScript
'use client';
;
var jsxRuntime = require('react/jsx-runtime');
function ComboboxHiddenInput({
value,
valuesDivider = ",",
...others
}) {
return /* @__PURE__ */ jsxRuntime.jsx(
"input",
{
type: "hidden",
value: Array.isArray(value) ? value.join(valuesDivider) : value || "",
...others
}
);
}
ComboboxHiddenInput.displayName = "@mantine/core/ComboboxHiddenInput";
exports.ComboboxHiddenInput = ComboboxHiddenInput;
//# sourceMappingURL=ComboboxHiddenInput.cjs.map