Buttons

Buttons communicate the action that will occur when the user clicks or touches them. They can be used on button, a or input elements. Use the disabled and hidden modifiers to change state of the button.

Link
Markup

Toggle example guides Toggle HTML markup

<button pam-Button>Button</button>
<a href="#" pam-Button>Link</a>
<input type="button" value="Input" pam-Button>
<input type="submit" value="Submit" pam-Button>
<input type="reset" value="Reset" pam-Button>
<button pam-Button="disabled">Disabled</button>
<button pam-Button="hidden">Hidden</button>