import { runFunction } from "../runFunction/index.mjs";
function getFieldPropsOrFormItemProps(fieldProps, form, extraProps) {
if (form === void 0) {
return fieldProps;
}
return runFunction(fieldProps, form, extraProps);
}
export {
getFieldPropsOrFormItemProps
};