Skip to content

Instantly share code, notes, and snippets.

@fengyfei
Last active April 26, 2019 05:57
Show Gist options
  • Save fengyfei/cca45fa6080031566e45d70d10fb94d8 to your computer and use it in GitHub Desktop.
Save fengyfei/cca45fa6080031566e45d70d10fb94d8 to your computer and use it in GitHub Desktop.
Svelte with MDC Button.
<link rel="stylesheet" href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<p>
<button class="mdc-button mdc-button--raised">
Raised Button
</button>
</p>
<p>
<button class="mdc-button mdc-button--unelevated">
Unelevated Button
</button>
</p>
<p>
<button class="mdc-button">
<span class="mdc-button__label">Label Button</span>
</button>
</p>
<p>
<button class="mdc-button mdc-button--raised">
<i class="material-icons mdc-button__icon" aria-hidden="true">favorite</i>
<span class="mdc-button__label">Button</span>
</button>
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment