chowa
Version:
UI component library based on React
22 lines (21 loc) • 838 B
JavaScript
/**
* @license chowa v1.1.3
*
* Copyright (c) Chowa Techonlogies Co.,Ltd.(http://www.chowa.cn).
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
;
Object.defineProperty(exports, "__esModule", { value: true });
const React = require("react");
const utils_1 = require("../utils");
const no_data_1 = require("../no-data");
class CascaderNotFound extends React.PureComponent {
render() {
const { noDataDescription, noDataImg, noDataImgStyle } = this.props;
return (React.createElement("div", { className: utils_1.preClass('cascader-not-found') },
React.createElement(no_data_1.default, { description: noDataDescription, img: noDataImg, imgStyle: noDataImgStyle })));
}
}
exports.default = CascaderNotFound;