Skip to content

Instantly share code, notes, and snippets.

@bluejack
Last active June 22, 2022 16:57
Show Gist options
  • Save bluejack/5ca874d7f44452ce341fbbf5d7dca97c to your computer and use it in GitHub Desktop.
Save bluejack/5ca874d7f44452ce341fbbf5d7dca97c to your computer and use it in GitHub Desktop.
function button(parent_id, params = {}) {
const container = document.getElementById(parent_id);
const options = {
type: 'standard',
theme: 'outline',
size: 'medium',
shape: 'pill',
...params,
};
google.accounts.id.renderButton(
container,
options
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment