Material Design Icons . Material Design Icons styled radio button and checkboxes.
bower install material-radio-checkbox
Make sure to include material-radio-checkbox.css in your HTML, or add scss/less files Sass / Less.
Checkbox Example:
<form role="form">
...
<label class="checkbox">
<input type="checkbox" />
Check me out
</label>
...
</form>
Radiobutton Example:
<form role="form">
...
<label class="radio">
<input type="radio" name="radio2" value="option1">
One
</div>
<label class="radio">
<input type="radio" name="radio2" value="option2" checked>
Two
</div>
...
</form>
Using Sass
@import "../material-radio-checkbox";
Using Less
@import "../material-radio-checkbox";