Related #328, #385 There are really only three ways to do anchors for some components: Options 1: Anchor around component: ```html <a href> <mwc-button></mwc-button> </a> ``` Option 2: Facade anchor attributes ```html <mwc-button href></mwc-button> ``` Option 3: Slotted anchor ```html <mwc-button> <a href></a> </mwc-button> ``` We should pick one, and use it consistently