9s-fe-core
Version:
Core functionalities for authentication, configuration, and repository management.
8 lines (7 loc) • 717 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const jsx_runtime_1 = require("react/jsx-runtime");
const ButtonSubmit = ({ label = 'Submit', onClick, disabled = false }) => {
return ((0, jsx_runtime_1.jsx)("button", { onClick: onClick, disabled: disabled, className: "\n justify-center\n items-center\n min-w-[149px]\n h-[44px]\n gap-[6px]\n rounded-[12px]\n p-[5px 10px]\n bg-primary\n text-white\n flex\n items-center\n disabled:opacity-50\n disabled:cursor-not-allowed\n ", children: label }));
};
exports.default = ButtonSubmit;