geostyler
Version:
Framework for styling geodata
22 lines (21 loc) • 376 B
JavaScript
import { jsx as m } from "react/jsx-runtime";
import { Input as o } from "antd";
/* empty css */
const g = ({
value: t,
placeholder: n = "Enter Name",
onChange: e
}) => /* @__PURE__ */ m(
o,
{
className: "gs-namefield",
value: t,
onChange: (a) => {
e && e(a.target.value);
},
placeholder: n
}
);
export {
g as NameField
};