@prosperitainova/dumbo-react-native
Version:
Dumbo for React Native Library
19 lines (18 loc) • 528 B
JavaScript
;
import React from 'react';
import { BaseTextInput } from '../BaseTextInputs';
import { jsx as _jsx } from "react/jsx-runtime";
/**
* TextInput component for rendering text input box
*
* {@link https://github.com/carbon-design-system/carbon-react-native/blob/main/example/src/Views/TextInput.tsx | Example code}
*/
export class TextInput extends React.Component {
render() {
return /*#__PURE__*/_jsx(BaseTextInput, {
type: "text",
...this.props
});
}
}
//# sourceMappingURL=index.js.map