@focuson/form_components
Version:
Components that can be used by @focuson/forms
9 lines (8 loc) • 317 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GuardButton = void 0;
const jsx_runtime_1 = require("react/jsx-runtime");
function GuardButton({ cond, children }) {
return cond.length === 0 ? children : (0, jsx_runtime_1.jsx)("span", {});
}
exports.GuardButton = GuardButton;