ur-ui-kit-tm
Version:
unlimited robotics ui kit
7 lines (6 loc) • 408 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { InputStyled } from "./input.styled";
export var Input = function (_a) {
var text = _a.text, color = _a.color, onChange = _a.onChange, customProps = _a.customProps, placeholder = _a.placeholder;
return (_jsx(InputStyled, { onChange: onChange, placeholder: placeholder, color: color, value: text, customProps: customProps }, void 0));
};