iconsLibrary : (materialicons|fontawesome)Default: 'materialicons'

The name of the icons library that is going to be in use. Currently we support Material Icons and Font Awesome.

If you use Bootstrap as uiLibrary, then the iconsLibrary is set to font awesome by default.
If you use Material Design as uiLibrary, then the iconsLibrary is set to Material Icons by default.
The css files for Material Icons or Font Awesome should be manually included to the page where the grid is in use.

Examples

Bootstrap 4 FontAwesome

    
 <textarea id="editor"></textarea>
 <script>
     $('#editor').editor({
         uiLibrary: 'bootstrap4',
         iconsLibrary: 'fontawesome'
     });
 </script>

  

Bootstrap 3 FontAwesome

    
 <textarea id="editor"></textarea>
 <script>
     $('#editor').editor({
         uiLibrary: 'bootstrap',
         iconsLibrary: 'fontawesome'
     });
 </script>