mirror of
https://github.com/getredash/redash.git
synced 2026-05-11 00:00:57 -04:00
13 lines
378 B
JavaScript
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);
|