@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
19 lines (18 loc) • 668 B
JavaScript
"use client";
import { useProps } from "../../core/MantineProvider/use-props/use-props.mjs";
import { factory } from "../../core/factory/factory.mjs";
import { InputBase } from "../InputBase/InputBase.mjs";
import { jsx } from "react/jsx-runtime";
//#region packages/@mantine/core/src/components/TextInput/TextInput.tsx
const TextInput = factory((props) => {
return /* @__PURE__ */ jsx(InputBase, {
component: "input",
...useProps("TextInput", null, props),
__staticSelector: "TextInput"
});
});
TextInput.classes = InputBase.classes;
TextInput.displayName = "@mantine/core/TextInput";
//#endregion
export { TextInput };
//# sourceMappingURL=TextInput.mjs.map