@carbon/ibm-products
Version:
Carbon for IBM Products
24 lines (22 loc) • 671 B
JavaScript
/**
* Copyright IBM Corp. 2020, 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import { pkg } from "../../../settings.js";
import { createContext } from "react";
//#region src/components/AddSelect/next/context.ts
/**
* Copyright IBM Corp. 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
const blockClass = `${pkg.prefix}--add-select__next`;
const AddSelectContext = createContext({
multi: false,
selectedItems: void 0
});
//#endregion
export { AddSelectContext, blockClass };