Files
redash/client/app/components/visualizations/editor/TextArea.jsx
2020-04-25 15:51:21 -03:00

13 lines
378 B
JavaScript

import React from "react";
import cx from "classnames";
import AntInput from "antd/lib/input";
import withControlLabel from "./withControlLabel";
import "./TextArea.less";
function TextArea({ className, ...otherProps }) {
return <AntInput.TextArea className={cx("visualization-editor-text-area", className)} {...otherProps} />;
}
export default withControlLabel(TextArea);