UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

16 lines (15 loc) 663 B
"use client"; require("../../../_virtual/_rolldown/runtime.cjs"); let react_jsx_runtime = require("react/jsx-runtime"); //#region packages/@mantine/core/src/components/Combobox/ComboboxHiddenInput/ComboboxHiddenInput.tsx function ComboboxHiddenInput({ value, valuesDivider = ",", ...others }) { return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("input", { type: "hidden", value: Array.isArray(value) ? value.join(valuesDivider) : value ? `${value}` : "", ...others }); } ComboboxHiddenInput.displayName = "@mantine/core/ComboboxHiddenInput"; //#endregion exports.ComboboxHiddenInput = ComboboxHiddenInput; //# sourceMappingURL=ComboboxHiddenInput.cjs.map