UNPKG

772 BMarkdownView Raw
1# FONT AWESOME AND REACT-REDUX-GRID
2
3The grid expects FontAwesome to be available, as the core CSS utilizes a subset of the icons for things like sort-arrows and grid action icons.
4
5The grid component doesn't ship with fonts since that's a bad practice. For the grid to work correcrly, you will need to make FontAwesome available either via build process, or linking to them externally. Here is a list of all icons currently utilized by grid:
6
7```styl
8icondictionary = {
9 'arrows-v': '\F07D',
10 'search': '\F002',
11 'close': '\F00D',
12 'chevron-down': '\F078',
13 'chevron-right': '\F054',
14 'filter': '\F0b0',
15 'action': '\F142',
16 'sort-up': '\F0D8',
17 'sort-down': '\F0D7',
18}
19```
20
21Please see font awesome's documentation for more [information](http://fontawesome.io/)