isa-auth-core
Version:
33 lines (32 loc) • 839 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "default", {
enumerable: true,
get: function() {
return _default;
}
});
const _loginButton = /*#__PURE__*/ _interop_require_default(require("./loginButton"));
function _interop_require_default(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
const googleLoginButton = new _loginButton.default({
type: 'rect',
provider: 'google',
action: ()=>console.log('로그인 시도'),
config: {
id: 'login-google',
text: 'Google 계정으로 로그인',
fullWidth: true,
style: {
backgroundColor: '#fff',
color: '#000'
}
}
});
const _default = googleLoginButton;
//# sourceMappingURL=googleLogin.js.map