Bootstrap Material Design Icons
Material design icons are the official icon set
from Google that are designed under the material design guidelines.
In the official package the icons uses a typographic feature called ligatures,
which allows rendering of an icon glyph simply by using its textual name. E.g., <i class="material-icons">face</i>
.
In this repository also implemented the ability to use the icons in the bootstrap-style, like with glyphicon
, font-awesome
or ionicons
.
Installation
component
$ component install mervick/bootstrap-material-icons
bower
$ bower install bootstrap-material-icons --save
npm
$ npm install bootstrap-material-icons --save
composer
$ composer require mervick/bootstrap-material-icons
Usage
Add to your html code
<link rel="stylesheet" href="css/material-icons.min.css">
Material-style icon:
<i class="material-icons">home</i>
Bootstrap-style icon:
<i class="mdicon mdicon-home"></i>
All icons set you can find in the file demo.html
.