import { CloseCircleOutlined } from "@ant-design/icons"; import { Select } from "antd"; /** * 可创建选项的选择器组件 */ function SelectCreate(props) { const { items, showDelete = true, label = "", maxCount = 1, onDelete, formValues, ...restProps } = props; const handlerDelete = (option) => { onDelete?.(option); }; return ( ); } export default SelectCreate;