minishouyin/node_modules/antd/lib/input/utils.js
2025-11-12 11:35:57 +08:00

9 lines
240 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.hasPrefixSuffix = hasPrefixSuffix;
function hasPrefixSuffix(props) {
return !!(props.prefix || props.suffix || props.allowClear || props.showCount);
}