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