@progress/kendo-react-dateinputs
Version:
React DateInput is a perfect input component for handling quick and efficient date values. KendoReact Date Inputs package
19 lines (18 loc) • 882 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import * as a from "react";
import { classNames as s } from "@progress/kendo-react-common";
const m = a.forwardRef((e, r) => {
const { _ref: n } = e, t = a.useRef(null);
a.useImperativeHandle(r, () => t.current), a.useImperativeHandle(n, () => t.current);
const c = a.useMemo(() => s(e.className, "k-picker-wrap"), [e.className]);
return /* @__PURE__ */ a.createElement("span", { ref: t, id: e.id, style: e.style, className: c, tabIndex: e.tabIndex }, e.children);
});
export {
m as PickerWrap
};