Socket
Socket
Sign inDemoInstall

@expo/vector-icons

Package Overview
Dependencies
Maintainers
24
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expo/vector-icons - npm Package Compare versions

Comparing version 11.0.0 to 12.0.0

build/vendor/react-native-vector-icons/bin/generate-flow.js

12

build/createIconSet.d.ts
import React, { ComponentClass } from "react";
import { TextProps, TouchableHighlightProps, ViewProps } from "react-native";
import { TextProps, TouchableHighlightProps, ViewProps, OpaqueColorValue } from "react-native";
export { DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from "./vendor/react-native-vector-icons/lib/create-icon-set";

@@ -19,6 +19,7 @@ export interface IconButtonProps<GLYPHS extends string> extends ViewProps, TouchableHighlightProps {

/**
* Color of the icon
* Color of the icon. Can be a string or OpaqueColorValue (returned from
* PlatformColor(..))
*
*/
color?: string;
color?: string | OpaqueColorValue;
}

@@ -40,6 +41,7 @@ export interface IconProps<GLYPHS extends string> extends TextProps {

/**
* Color of the icon
* Color of the icon. Can be a string or OpaqueColorValue (returned from
* PlatformColor(..))
*
*/
color?: string;
color?: string | OpaqueColorValue;
}

@@ -46,0 +48,0 @@ export declare type GlyphMap<G extends string> = {

@@ -1,1 +0,1 @@

export default function (config: any, expoFontName: any, expoAssetId: any): import("./createIconSet").Icon<never, any>;
export default function (config: any, expoFontName: any, expoAssetId: any): import("./createIconSet").Icon<string, string>;

@@ -12,8 +12,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;
#!/usr/bin/env node
/* eslint-disable no-console */
const _ = require('lodash');
const omit = require('lodash.omit');
const fs = require('fs');

@@ -31,3 +31,3 @@ const path = require('path');

const data = _.omit(
const data = omit(
argv,

@@ -34,0 +34,0 @@ '_ $0 o output p prefix t template g glyphmap'.split(' ')

#!/usr/bin/env node
/* eslint-disable no-console */
const _ = require('lodash');
const omit = require('lodash.omit');
const lodashTemplate = require('lodash.template');
const fs = require('fs');

@@ -42,3 +43,3 @@ const path = require('path');

let data = _.omit(argv, '_ $0 o output t template g glyphmap'.split(' '));
let data = omit(argv, '_ $0 o output t template g glyphmap'.split(' '));
const glyphMap = extractGlyphMapFromCodepoints(argv._[0]);

@@ -48,3 +49,3 @@

if (template) {
const compiled = _.template(template);
const compiled = lodashTemplate(template);
data = data || {};

@@ -51,0 +52,0 @@ data.glyphMap = content;

# Generating Feather icon set
1. Go to [Icomoon Library](https://icomoon.io/app/#/select/library) and press _+ Add_ on the Feather icon set
2. Press _Select all_ in the hamburger menu next to the icon set
3. Press _Generate Font_ in the bottom menu
4. Press _Preferences_ and enter `Feather` as _Font Name_ in the dialog
5. Press _Download_
6. Unzip the file and move the folder to the `react-native-vector-icons` folder
7. Generate the icon set with `yarn build-feather`
### To build the Feather icon Set you will need:
- [Inkscape](https://inkscape.org/)
- [GNU Parallel](https://www.gnu.org/software/parallel/)
- [Font Custom](https://github.com/FontCustom/fontcustom)
- [Xvfb](https://www.x.org/releases/X11R7.6/doc/man/man1/Xvfb.1.xhtml) - Optional, but highly recommended
1. Go to [Font Custom](https://github.com/FontCustom/fontcustom) and follow the installation instructions
2. Generate the icon set with `yarn build-feather`
Before we can build the icon set, you'll need to pre-process the icons. You can do this using Inkscape with help of Parallel.
If you have Xvfb installed, you will see a progress bar in the console; if not, each icon will launch one Inkscape window to adjust the SVG.
The building stage will create a folder called `Feather`. This will be removed at the end of the build.

@@ -11,3 +11,3 @@ # Contributing

If you would like to submit a feature request or report a bug, we encourage you to first look through the [issues](https://github.com/react-native-vector-icons/loki/issues) and [pull requests](https://github.com/oblador/react-native-vector-icons/pulls) before filing a new issue.
If you would like to submit a feature request or report a bug, we encourage you to first look through the [issues](https://github.com/oblador/react-native-vector-icons/issues) and [pull requests](https://github.com/oblador/react-native-vector-icons/pulls) before filing a new issue.

@@ -20,9 +20,9 @@ ## Submitting a Pull Request

* Install [Node.js](https://nodejs.org/) if you have not already. (*We suggest you to use node v6.x.x*)
* Fork the repo
* ```git clone https://github.com/*yourusername*/react-native-vector-icons.git && cd react-native-vector-icons```
* ```yarn install``` OR ```npm install```
* ```npm test```
* Optionally ```brew install fontcustom && npm run build``` if you've updated any icon sets.
- Install [Node.js](https://nodejs.org/) if you have not already. (_We suggest you to use node v6.x.x_)
- Fork the repo
- `git clone https://github.com/*yourusername*/react-native-vector-icons.git && cd react-native-vector-icons`
- `yarn install` OR `npm install`
- `npm test`
- Optionally `brew install fontcustom && npm run build` if you've updated any icon sets.
One you have done this, create a new branch with a name that loosely describes the issue on which you will be working. Once you think you have the addressed the issue in question, submit a pull request to the `master` branch.

@@ -12,8 +12,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;

@@ -12,8 +12,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;

@@ -12,8 +12,9 @@ /**

export default iconSet;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;

@@ -12,8 +12,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;

@@ -16,7 +16,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;

@@ -5,3 +5,3 @@ # FontAwesome 5

harder to use in some cases. The implemented solution should be fairly
straightforward to use after it has been setup.
straightforward to use after it has been setup.
Android and iOS handles fonts differently which is why it could be

@@ -12,4 +12,4 @@ easily implemented without any additional setup.

* [`Usage`](#usage)
* [`Upgrading to Pro`](#upgrading-to-pro)
- [`Usage`](#usage)
- [`Upgrading to Pro`](#upgrading-to-pro)

@@ -23,3 +23,3 @@ # Usage

const icon = (<FontAwesome5 name={'comments'} />);
const icon = <FontAwesome5 name={'comments'} />;
```

@@ -33,4 +33,4 @@

const icon = (<FontAwesome5 name={'comments'} solid />);
const icon = (<FontAwesome5 name={'git'} brand />);
const icon = <FontAwesome5 name={'comments'} solid />;
const icon = <FontAwesome5 name={'git'} brand />;
```

@@ -40,7 +40,7 @@

| Type | Description |
| --- | --- |
| **brand** | Uses the Brands font |
| **light** | Uses the Light font (pro) or Regular (Free) |
| **solid** | Uses the Solid font |
| Type | Description |
| --------- | ------------------------------------------- |
| **brand** | Uses the Brands font |
| **light** | Uses the Light font (pro) or Regular (Free) |
| **solid** | Uses the Solid font |

@@ -54,4 +54,4 @@ No specified type indicates Regular font.

const regular_icon_btn = (<FontAwesome5.Button name={'comments'} />);
const solid_icon_btn = (<FontAwesome5.Button name={'comments'} solid />);
const regular_icon_btn = <FontAwesome5.Button name={'comments'} />;
const solid_icon_btn = <FontAwesome5.Button name={'comments'} solid />;
```

@@ -61,3 +61,3 @@

```getImageSource``` works a little different due to its native backend and how
`getImageSource` works a little different due to its native backend and how
the font is separated into different files. Therefore, the enum FA5Style is

@@ -80,3 +80,8 @@ defined to help setting the style of the font:

FontAwesome5.getImageSource("comments", 30, '#000', FA5Style.solid).then(source => this.setState({ image: source }));
FontAwesome5.getImageSource(
'comments',
30,
'#000',
FA5Style.solid
).then(source => this.setState({ image: source }));
```

@@ -89,10 +94,12 @@

You need your FontAwesome npm token which can be obtained by logging into your
account and then access the ```Services``` tab.
account and then access the `Services` tab.
Run ```./node_modules/.bin/fa5-upgrade``` and enter the token when asked to in order to
upgrade to the Pro version.
Run `yarn fa5-upgrade` or `./node_modules/.bin/fa5-upgrade` and enter the token
when asked to in order to upgrade to the Pro version. It will install the fonts
in your repo in the `assets/fonts` directory but the folder can be customized by
setting it when executing the command: `yarn fa5-upgrade [destination]`.
## Manually
If the shell script does not work you can install the Pro version manually.
If the shell script does not work you can install the Pro version manually.
All you really need to do is adding the Pro fonts to your project, there is

@@ -104,6 +111,7 @@ instructions on how to do this in main README.md.

Just as easy as using the Free icons, just include the icon set like this:
```javascript
import FontAwesome5Pro from 'react-native-vector-icons/FontAwesome5Pro';
const icon = (<FontAwesome5Pro name={'comments'} light/>);
const icon = <FontAwesome5Pro name={'comments'} light />;
```

@@ -16,7 +16,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;
/**
* Feather icon set component.
* Usage: <Feather name="icon-name" size={20} color="#4F8EF7" />
* Fontisto icon set component.
* Usage: <Fontisto name="icon-name" size={20} color="#4F8EF7" />
*/
import createIconSet from "./createIconSet";
import font from "./vendor/react-native-vector-icons/Fonts/Fontisto.ttf";
import glyphMap from "./vendor/react-native-vector-icons/glyphmaps/Fontisto.json";
const iconSet = createIconSet(glyphMap, "Fontisto", font);
import createIconSet from './lib/create-icon-set';
import glyphMap from './glyphmaps/Fontisto.json';
const iconSet = createIconSet(glyphMap, 'Fontisto', 'Fontisto.ttf');
export default iconSet;

@@ -14,6 +16,4 @@ export const {

TabBarItemIOS,
ToolbarAndroid,
getImageSource,
getImageSourceSync
getImageSourceSync,
} = iconSet;
//# sourceMappingURL=Fontisto.js.map

@@ -12,8 +12,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;
{
"activity": 59648,
"airplay": 59649,
"alert-circle": 59650,
"alert-octagon": 59651,
"alert-triangle": 59652,
"align-center": 59653,
"align-justify": 59654,
"align-left": 59655,
"align-right": 59656,
"anchor": 59657,
"aperture": 59658,
"archive": 59659,
"arrow-down": 59660,
"arrow-down-circle": 59661,
"arrow-down-left": 59662,
"arrow-down-right": 59663,
"arrow-left": 59664,
"arrow-left-circle": 59665,
"arrow-right": 59666,
"arrow-right-circle": 59667,
"arrow-up": 59668,
"arrow-up-circle": 59669,
"arrow-up-left": 59670,
"arrow-up-right": 59671,
"at-sign": 59672,
"award": 59673,
"bar-chart": 59674,
"bar-chart-2": 59675,
"battery": 59676,
"battery-charging": 59677,
"bell": 59678,
"bell-off": 59679,
"bluetooth": 59680,
"bold": 59681,
"book": 59682,
"book-open": 59683,
"bookmark": 59684,
"box": 59685,
"briefcase": 59686,
"calendar": 59687,
"camera": 59688,
"camera-off": 59689,
"cast": 59690,
"check": 59691,
"check-circle": 59692,
"check-square": 59693,
"chevron-down": 59694,
"chevron-left": 59695,
"chevron-right": 59696,
"chevron-up": 59697,
"chevrons-down": 59698,
"chevrons-left": 59699,
"chevrons-right": 59700,
"chevrons-up": 59701,
"chrome": 59702,
"circle": 59703,
"clipboard": 59704,
"clock": 59705,
"cloud": 59706,
"cloud-drizzle": 59707,
"cloud-lightning": 59708,
"cloud-off": 59709,
"cloud-rain": 59710,
"cloud-snow": 59711,
"code": 59712,
"codepen": 59713,
"command": 59714,
"compass": 59715,
"copy": 59716,
"corner-down-left": 59717,
"corner-down-right": 59718,
"corner-left-down": 59719,
"corner-left-up": 59720,
"corner-right-down": 59721,
"corner-right-up": 59722,
"corner-up-left": 59723,
"corner-up-right": 59724,
"cpu": 59725,
"credit-card": 59726,
"crop": 59727,
"crosshair": 59728,
"database": 59729,
"delete": 59730,
"disc": 59731,
"dollar-sign": 59732,
"download": 59733,
"download-cloud": 59734,
"droplet": 59735,
"edit": 59736,
"edit-2": 59737,
"edit-3": 59738,
"external-link": 59739,
"eye": 59740,
"eye-off": 59741,
"facebook": 59742,
"fast-forward": 59743,
"feather": 59744,
"file": 59745,
"file-minus": 59746,
"file-plus": 59747,
"file-text": 59748,
"film": 59749,
"filter": 59750,
"flag": 59751,
"folder": 59752,
"folder-minus": 59753,
"folder-plus": 59754,
"gift": 59755,
"git-branch": 59756,
"git-commit": 59757,
"git-merge": 59758,
"git-pull-request": 59759,
"github": 59760,
"gitlab": 59761,
"globe": 59762,
"grid": 59763,
"hard-drive": 59764,
"hash": 59765,
"headphones": 59766,
"heart": 59767,
"help-circle": 59768,
"home": 59769,
"image": 59770,
"inbox": 59771,
"info": 59772,
"instagram": 59773,
"italic": 59774,
"layers": 59775,
"layout": 59776,
"life-buoy": 59777,
"link": 59778,
"link-2": 59779,
"linkedin": 59780,
"list": 59781,
"loader": 59782,
"lock": 59783,
"log-in": 59784,
"log-out": 59785,
"mail": 59786,
"map": 59787,
"map-pin": 59788,
"maximize": 59789,
"maximize-2": 59790,
"menu": 59791,
"message-circle": 59792,
"message-square": 59793,
"mic": 59794,
"mic-off": 59795,
"minimize": 59796,
"minimize-2": 59797,
"minus": 59798,
"minus-circle": 59799,
"minus-square": 59800,
"monitor": 59801,
"moon": 59802,
"more-horizontal": 59803,
"more-vertical": 59804,
"move": 59805,
"music": 59806,
"navigation": 59807,
"navigation-2": 59808,
"octagon": 59809,
"package": 59810,
"paperclip": 59811,
"pause": 59812,
"pause-circle": 59813,
"percent": 59814,
"phone": 59815,
"phone-call": 59816,
"phone-forwarded": 59817,
"phone-incoming": 59818,
"phone-missed": 59819,
"phone-off": 59820,
"phone-outgoing": 59821,
"pie-chart": 59822,
"play": 59823,
"play-circle": 59824,
"plus": 59825,
"plus-circle": 59826,
"plus-square": 59827,
"pocket": 59828,
"power": 59829,
"printer": 59830,
"radio": 59831,
"refresh-ccw": 59832,
"refresh-cw": 59833,
"repeat": 59834,
"rewind": 59835,
"rotate-ccw": 59836,
"rotate-cw": 59837,
"rss": 59838,
"save": 59839,
"scissors": 59840,
"search": 59841,
"send": 59842,
"server": 59843,
"settings": 59844,
"share": 59845,
"share-2": 59846,
"shield": 59847,
"shield-off": 59848,
"shopping-bag": 59849,
"shopping-cart": 59850,
"shuffle": 59851,
"sidebar": 59852,
"skip-back": 59853,
"skip-forward": 59854,
"slack": 59855,
"slash": 59856,
"sliders": 59857,
"smartphone": 59858,
"speaker": 59859,
"square": 59860,
"star": 59861,
"stop-circle": 59862,
"sun": 59863,
"sunrise": 59864,
"sunset": 59865,
"tablet": 59866,
"tag": 59867,
"target": 59868,
"terminal": 59869,
"thermometer": 59870,
"thumbs-down": 59871,
"thumbs-up": 59872,
"toggle-left": 59873,
"toggle-right": 59874,
"trash": 59875,
"trash-2": 59876,
"trending-down": 59877,
"trending-up": 59878,
"triangle": 59879,
"truck": 59880,
"tv": 59881,
"twitter": 59882,
"type": 59883,
"umbrella": 59884,
"underline": 59885,
"unlock": 59886,
"upload": 59887,
"upload-cloud": 59888,
"user": 59889,
"user-check": 59890,
"user-minus": 59891,
"user-plus": 59892,
"user-x": 59893,
"users": 59894,
"video": 59895,
"video-off": 59896,
"voicemail": 59897,
"volume": 59898,
"volume-1": 59899,
"volume-2": 59900,
"volume-x": 59901,
"watch": 59902,
"wifi": 59903,
"wifi-off": 59904,
"wind": 59905,
"x": 59906,
"x-circle": 59907,
"x-square": 59908,
"youtube": 59909,
"zap": 59910,
"zap-off": 59911,
"zoom-in": 59912,
"zoom-out": 59913
"activity": 61696,
"airplay": 61697,
"alert-circle": 61698,
"alert-octagon": 61699,
"alert-triangle": 61700,
"align-center": 61701,
"align-justify": 61702,
"align-left": 61703,
"align-right": 61704,
"anchor": 61705,
"aperture": 61706,
"archive": 61707,
"arrow-down": 61708,
"arrow-down-circle": 61709,
"arrow-down-left": 61710,
"arrow-down-right": 61711,
"arrow-left": 61712,
"arrow-left-circle": 61713,
"arrow-right": 61714,
"arrow-right-circle": 61715,
"arrow-up": 61716,
"arrow-up-circle": 61717,
"arrow-up-left": 61718,
"arrow-up-right": 61719,
"at-sign": 61720,
"award": 61721,
"bar-chart": 61722,
"bar-chart-2": 61723,
"battery": 61724,
"battery-charging": 61725,
"bell": 61726,
"bell-off": 61727,
"bluetooth": 61728,
"bold": 61729,
"book": 61730,
"book-open": 61731,
"bookmark": 61732,
"box": 61733,
"briefcase": 61734,
"calendar": 61735,
"camera": 61736,
"camera-off": 61737,
"cast": 61738,
"check": 61739,
"check-circle": 61740,
"check-square": 61741,
"chevron-down": 61742,
"chevron-left": 61743,
"chevron-right": 61744,
"chevron-up": 61745,
"chevrons-down": 61746,
"chevrons-left": 61747,
"chevrons-right": 61748,
"chevrons-up": 61749,
"chrome": 61750,
"circle": 61751,
"clipboard": 61752,
"clock": 61753,
"cloud": 61754,
"cloud-drizzle": 61755,
"cloud-lightning": 61756,
"cloud-off": 61757,
"cloud-rain": 61758,
"cloud-snow": 61759,
"code": 61760,
"codepen": 61761,
"codesandbox": 61762,
"coffee": 61763,
"columns": 61764,
"command": 61765,
"compass": 61766,
"copy": 61767,
"corner-down-left": 61768,
"corner-down-right": 61769,
"corner-left-down": 61770,
"corner-left-up": 61771,
"corner-right-down": 61772,
"corner-right-up": 61773,
"corner-up-left": 61774,
"corner-up-right": 61775,
"cpu": 61776,
"credit-card": 61777,
"crop": 61778,
"crosshair": 61779,
"database": 61780,
"delete": 61781,
"disc": 61782,
"divide": 61783,
"divide-circle": 61784,
"divide-square": 61785,
"dollar-sign": 61786,
"download": 61787,
"download-cloud": 61788,
"dribbble": 61789,
"droplet": 61790,
"edit": 61791,
"edit-2": 61792,
"edit-3": 61793,
"external-link": 61794,
"eye": 61795,
"eye-off": 61796,
"facebook": 61797,
"fast-forward": 61798,
"feather": 61799,
"figma": 61800,
"file": 61801,
"file-minus": 61802,
"file-plus": 61803,
"file-text": 61804,
"film": 61805,
"filter": 61806,
"flag": 61807,
"folder": 61808,
"folder-minus": 61809,
"folder-plus": 61810,
"framer": 61811,
"frown": 61812,
"gift": 61813,
"git-branch": 61814,
"git-commit": 61815,
"git-merge": 61816,
"git-pull-request": 61817,
"github": 61818,
"gitlab": 61819,
"globe": 61820,
"grid": 61821,
"hard-drive": 61822,
"hash": 61823,
"headphones": 61824,
"heart": 61825,
"help-circle": 61826,
"hexagon": 61827,
"home": 61828,
"image": 61829,
"inbox": 61830,
"info": 61831,
"instagram": 61832,
"italic": 61833,
"key": 61834,
"layers": 61835,
"layout": 61836,
"life-buoy": 61837,
"link": 61838,
"link-2": 61839,
"linkedin": 61840,
"list": 61841,
"loader": 61842,
"lock": 61843,
"log-in": 61844,
"log-out": 61845,
"mail": 61846,
"map": 61847,
"map-pin": 61848,
"maximize": 61849,
"maximize-2": 61850,
"meh": 61851,
"menu": 61852,
"message-circle": 61853,
"message-square": 61854,
"mic": 61855,
"mic-off": 61856,
"minimize": 61857,
"minimize-2": 61858,
"minus": 61859,
"minus-circle": 61860,
"minus-square": 61861,
"monitor": 61862,
"moon": 61863,
"more-horizontal": 61864,
"more-vertical": 61865,
"mouse-pointer": 61866,
"move": 61867,
"music": 61868,
"navigation": 61869,
"navigation-2": 61870,
"octagon": 61871,
"package": 61872,
"paperclip": 61873,
"pause": 61874,
"pause-circle": 61875,
"pen-tool": 61876,
"percent": 61877,
"phone": 61878,
"phone-call": 61879,
"phone-forwarded": 61880,
"phone-incoming": 61881,
"phone-missed": 61882,
"phone-off": 61883,
"phone-outgoing": 61884,
"pie-chart": 61885,
"play": 61886,
"play-circle": 61887,
"plus": 61888,
"plus-circle": 61889,
"plus-square": 61890,
"pocket": 61891,
"power": 61892,
"printer": 61893,
"radio": 61894,
"refresh-ccw": 61895,
"refresh-cw": 61896,
"repeat": 61897,
"rewind": 61898,
"rotate-ccw": 61899,
"rotate-cw": 61900,
"rss": 61901,
"save": 61902,
"scissors": 61903,
"search": 61904,
"send": 61905,
"server": 61906,
"settings": 61907,
"share": 61908,
"share-2": 61909,
"shield": 61910,
"shield-off": 61911,
"shopping-bag": 61912,
"shopping-cart": 61913,
"shuffle": 61914,
"sidebar": 61915,
"skip-back": 61916,
"skip-forward": 61917,
"slack": 61918,
"slash": 61919,
"sliders": 61920,
"smartphone": 61921,
"smile": 61922,
"speaker": 61923,
"square": 61924,
"star": 61925,
"stop-circle": 61926,
"sun": 61927,
"sunrise": 61928,
"sunset": 61929,
"tablet": 61930,
"tag": 61931,
"target": 61932,
"terminal": 61933,
"thermometer": 61934,
"thumbs-down": 61935,
"thumbs-up": 61936,
"toggle-left": 61937,
"toggle-right": 61938,
"tool": 61939,
"trash": 61940,
"trash-2": 61941,
"trello": 61942,
"trending-down": 61943,
"trending-up": 61944,
"triangle": 61945,
"truck": 61946,
"tv": 61947,
"twitch": 61948,
"twitter": 61949,
"type": 61950,
"umbrella": 61951,
"underline": 61952,
"unlock": 61953,
"upload": 61954,
"upload-cloud": 61955,
"user": 61956,
"user-check": 61957,
"user-minus": 61958,
"user-plus": 61959,
"user-x": 61960,
"users": 61961,
"video": 61962,
"video-off": 61963,
"voicemail": 61964,
"volume": 61965,
"volume-1": 61966,
"volume-2": 61967,
"volume-x": 61968,
"watch": 61969,
"wifi": 61970,
"wifi-off": 61971,
"wind": 61972,
"x": 61973,
"x-circle": 61974,
"x-octagon": 61975,
"x-square": 61976,
"youtube": 61977,
"zap": 61978,
"zap-off": 61979,
"zoom-in": 61980,
"zoom-out": 61981
}

@@ -11,2 +11,3 @@ {

"affiliatetheme",
"airbnb",
"algolia",

@@ -35,2 +36,3 @@ "alipay",

"bandcamp",
"battle-net",
"behance-square",

@@ -48,4 +50,7 @@ "behance",

"bluetooth",
"bootstrap",
"btc",
"buffer",
"buromobelexperte",
"buy-n-large",
"buysellads",

@@ -66,2 +71,3 @@ "canadian-maple-leaf",

"chrome",
"chromecast",
"cloudscale",

@@ -75,2 +81,3 @@ "cloudsmith",

"contao",
"cotton-bureau",
"cpanel",

@@ -97,2 +104,3 @@ "creative-commons-by",

"d-and-d",
"dailymotion",
"dashcube",

@@ -129,2 +137,3 @@ "delicious",

"etsy",
"evernote",
"expeditedssl",

@@ -139,2 +148,3 @@ "facebook-f",

"figma",
"firefox-browser",
"firefox",

@@ -165,2 +175,3 @@ "first-order-alt",

"gg",
"git-alt",
"git-square",

@@ -202,3 +213,5 @@ "git",

"hubspot",
"ideal",
"imdb",
"instagram-square",
"instagram",

@@ -209,2 +222,3 @@ "intercom",

"ioxhost",
"itch-io",
"itunes-note",

@@ -244,2 +258,3 @@ "itunes",

"maxcdn",
"mdb",
"medapps",

@@ -252,5 +267,7 @@ "medium-m",

"mendeley",
"microblog",
"microsoft",
"mix",
"mixcloud",
"mixer",
"mizuni",

@@ -262,3 +279,2 @@ "modx",

"nimblr",
"nintendo-switch",
"node-js",

@@ -276,2 +292,3 @@ "node",

"optin-monster",
"orcid",
"osi",

@@ -292,2 +309,3 @@ "page4",

"pied-piper-pp",
"pied-piper-square",
"pied-piper",

@@ -324,2 +342,3 @@ "pinterest-p",

"safari",
"salesforce",
"sass",

@@ -333,2 +352,3 @@ "schlix",

"shirtsinbulk",
"shopify",
"shopware",

@@ -350,2 +370,3 @@ "simplybuilt",

"speakap",
"speaker-deck",
"spotify",

@@ -355,2 +376,3 @@ "squarespace",

"stack-overflow",
"stackpath",
"staylinked",

@@ -370,2 +392,4 @@ "steam-square",

"suse",
"swift",
"symfony",
"teamspeak",

@@ -391,3 +415,5 @@ "telegram-plane",

"uikit",
"umbraco",
"uniregistry",
"unity",
"untappd",

@@ -410,2 +436,3 @@ "ups",

"vuejs",
"waze",
"weebly",

@@ -433,2 +460,3 @@ "weibo",

"yahoo",
"yammer",
"yandex-international",

@@ -651,2 +679,5 @@ "yandex",

"bacon",
"bahai",
"balance-scale-left",
"balance-scale-right",
"balance-scale",

@@ -672,2 +703,3 @@ "ban",

"bicycle",
"biking",
"binoculars",

@@ -691,4 +723,8 @@ "biohazard",

"bookmark",
"border-all",
"border-none",
"border-style",
"bowling-ball",
"box-open",
"box-tissue",
"box",

@@ -732,2 +768,3 @@ "boxes",

"car",
"caravan",
"caret-down",

@@ -816,2 +853,3 @@ "caret-left",

"compass",
"compress-alt",
"compress-arrows-alt",

@@ -853,2 +891,3 @@ "compress",

"directions",
"disease",
"divide",

@@ -894,2 +933,3 @@ "dizzy",

"exclamation",
"expand-alt",
"expand-arrows-alt",

@@ -902,4 +942,6 @@ "expand",

"eye",
"fan",
"fast-backward",
"fast-forward",
"faucet",
"fax",

@@ -1009,3 +1051,5 @@ "feather-alt",

"hand-holding-heart",
"hand-holding-medical",
"hand-holding-usd",
"hand-holding-water",
"hand-holding",

@@ -1023,5 +1067,9 @@ "hand-lizard",

"hand-scissors",
"hand-sparkles",
"hand-spock",
"hands-helping",
"hands-wash",
"hands",
"handshake-alt-slash",
"handshake-slash",
"handshake",

@@ -1031,5 +1079,10 @@ "hanukiah",

"hashtag",
"hat-cowboy-side",
"hat-cowboy",
"hat-wizard",
"haykal",
"hdd",
"head-side-cough-slash",
"head-side-cough",
"head-side-mask",
"head-side-virus",
"heading",

@@ -1054,2 +1107,3 @@ "headphones-alt",

"hospital-symbol",
"hospital-user",
"hospital",

@@ -1064,2 +1118,3 @@ "hot-tub",

"house-damage",
"house-user",
"hryvnia",

@@ -1069,2 +1124,3 @@ "i-cursor",

"icicles",
"icons",
"id-badge",

@@ -1097,2 +1153,3 @@ "id-card-alt",

"laptop-code",
"laptop-house",
"laptop-medical",

@@ -1128,2 +1185,4 @@ "laptop",

"luggage-cart",
"lungs-virus",
"lungs",
"magic",

@@ -1181,2 +1240,3 @@ "magnet",

"mouse-pointer",
"mouse",
"mug-hot",

@@ -1219,2 +1279,3 @@ "music",

"pencil-ruler",
"people-arrows",
"people-carry",

@@ -1225,6 +1286,9 @@ "pepper-hot",

"person-booth",
"phone-alt",
"phone-slash",
"phone-square-alt",
"phone-square",
"phone-volume",
"phone",
"photo-video",
"piggy-bank",

@@ -1236,2 +1300,3 @@ "pills",

"plane-departure",
"plane-slash",
"plane",

@@ -1261,2 +1326,4 @@ "play-circle",

"project-diagram",
"pump-medical",
"pump-soap",
"puzzle-piece",

@@ -1275,2 +1342,3 @@ "qrcode",

"receipt",
"record-vinyl",
"recycle",

@@ -1280,2 +1348,3 @@ "redo-alt",

"registered",
"remove-format",
"reply-all",

@@ -1324,2 +1393,3 @@ "reply",

"shield-alt",
"shield-virus",
"ship",

@@ -1360,10 +1430,17 @@ "shipping-fast",

"snowplow",
"soap",
"socks",
"solar-panel",
"sort-alpha-down-alt",
"sort-alpha-down",
"sort-alpha-up-alt",
"sort-alpha-up",
"sort-amount-down-alt",
"sort-amount-down",
"sort-amount-up-alt",
"sort-amount-up",
"sort-down",
"sort-numeric-down-alt",
"sort-numeric-down",
"sort-numeric-up-alt",
"sort-numeric-up",

@@ -1374,2 +1451,3 @@ "sort-up",

"space-shuttle",
"spell-check",
"spider",

@@ -1395,4 +1473,7 @@ "spinner",

"stop",
"stopwatch-20",
"stopwatch",
"store-alt-slash",
"store-alt",
"store-slash",
"store",

@@ -1457,2 +1538,3 @@ "stream",

"toggle-on",
"toilet-paper-slash",
"toilet-paper",

@@ -1468,2 +1550,3 @@ "toilet",

"traffic-light",
"trailer",
"train",

@@ -1535,2 +1618,6 @@ "tram",

"vihara",
"virus-slash",
"virus",
"viruses",
"voicemail",
"volleyball-ball",

@@ -1547,2 +1634,3 @@ "volume-down",

"water",
"wave-square",
"weight-hanging",

@@ -1549,0 +1637,0 @@ "weight",

@@ -15,2 +15,3 @@ {

"air-freshener": 62928,
"airbnb": 63540,
"algolia": 62316,

@@ -86,3 +87,6 @@ "align-center": 61495,

"bacon": 63461,
"bahai": 63078,
"balance-scale": 62030,
"balance-scale-left": 62741,
"balance-scale-right": 62742,
"ban": 61534,

@@ -101,2 +105,3 @@ "band-aid": 62562,

"battery-three-quarters": 62017,
"battle-net": 63541,
"bed": 62006,

@@ -111,2 +116,3 @@ "beer": 61692,

"bicycle": 61958,
"biking": 63562,
"bimobject": 62328,

@@ -140,5 +146,10 @@ "binoculars": 61925,

"bookmark": 61486,
"bootstrap": 63542,
"border-all": 63564,
"border-none": 63568,
"border-style": 63571,
"bowling-ball": 62518,
"box": 62566,
"box-open": 62622,
"box-tissue": 63835,
"boxes": 62568,

@@ -154,2 +165,3 @@ "braille": 62113,

"btc": 61786,
"buffer": 63543,
"bug": 61832,

@@ -164,2 +176,3 @@ "building": 61869,

"business-time": 63050,
"buy-n-large": 63654,
"buysellads": 61965,

@@ -187,2 +200,3 @@ "calculator": 61932,

"car-side": 62948,
"caravan": 63743,
"caret-down": 61655,

@@ -245,2 +259,3 @@ "caret-left": 61657,

"chrome": 62056,
"chromecast": 63544,
"church": 62749,

@@ -291,2 +306,3 @@ "circle": 61713,

"compress": 61542,
"compress-alt": 62498,
"compress-arrows-alt": 63372,

@@ -301,2 +317,3 @@ "concierge-bell": 62818,

"copyright": 61945,
"cotton-bureau": 63646,
"couch": 62648,

@@ -335,2 +352,3 @@ "cpanel": 62344,

"d-and-d-beyond": 63178,
"dailymotion": 63826,
"dashcube": 61968,

@@ -365,2 +383,3 @@ "database": 61888,

"discourse": 62355,
"disease": 63482,
"divide": 62761,

@@ -421,2 +440,3 @@ "dizzy": 62823,

"euro-sign": 61779,
"evernote": 63545,
"exchange-alt": 62306,

@@ -427,2 +447,3 @@ "exclamation": 61738,

"expand": 61541,
"expand-alt": 62500,
"expand-arrows-alt": 62238,

@@ -439,5 +460,7 @@ "expeditedssl": 62014,

"facebook-square": 61570,
"fan": 63587,
"fantasy-flight-games": 63196,
"fast-backward": 61513,
"fast-forward": 61520,
"faucet": 63749,
"fax": 61868,

@@ -483,2 +506,3 @@ "feather": 62765,

"firefox": 62057,
"firefox-browser": 63751,
"first-aid": 62585,

@@ -537,2 +561,3 @@ "first-order": 62128,

"git": 61907,
"git-alt": 63553,
"git-square": 61906,

@@ -605,3 +630,5 @@ "github": 61595,

"hand-holding-heart": 62654,
"hand-holding-medical": 63836,
"hand-holding-usd": 62656,
"hand-holding-water": 62657,
"hand-lizard": 62040,

@@ -618,12 +645,21 @@ "hand-middle-finger": 63494,

"hand-scissors": 62039,
"hand-sparkles": 63837,
"hand-spock": 62041,
"hands": 62658,
"hands-helping": 62660,
"hands-wash": 63838,
"handshake": 62133,
"handshake-alt-slash": 63839,
"handshake-slash": 63840,
"hanukiah": 63206,
"hard-hat": 63495,
"hashtag": 62098,
"hat-cowboy": 63680,
"hat-cowboy-side": 63681,
"hat-wizard": 63208,
"haykal": 63078,
"hdd": 61600,
"head-side-cough": 63841,
"head-side-cough-slash": 63842,
"head-side-mask": 63843,
"head-side-virus": 63844,
"heading": 61916,

@@ -653,2 +689,3 @@ "headphones": 61477,

"hospital-symbol": 62590,
"hospital-user": 63501,
"hot-tub": 62867,

@@ -663,2 +700,3 @@ "hotdog": 63503,

"house-damage": 63217,
"house-user": 63845,
"houzz": 62076,

@@ -671,5 +709,7 @@ "hryvnia": 63218,

"icicles": 63405,
"icons": 63597,
"id-badge": 62145,
"id-card": 62146,
"id-card-alt": 62591,
"ideal": 63763,
"igloo": 63406,

@@ -686,2 +726,3 @@ "image": 61502,

"instagram": 61805,
"instagram-square": 63829,
"intercom": 63407,

@@ -692,2 +733,3 @@ "internet-explorer": 62059,

"italic": 61491,
"itch-io": 63546,
"itunes": 62388,

@@ -725,2 +767,3 @@ "itunes-note": 62389,

"laptop-code": 62972,
"laptop-house": 63846,
"laptop-medical": 63506,

@@ -765,2 +808,4 @@ "laravel": 62397,

"luggage-cart": 62877,
"lungs": 62980,
"lungs-virus": 63847,
"lyft": 62403,

@@ -791,2 +836,3 @@ "magento": 62404,

"maxcdn": 61750,
"mdb": 63690,
"medal": 62882,

@@ -808,2 +854,3 @@ "medapps": 62406,

"meteor": 63315,
"microblog": 63770,
"microchip": 62171,

@@ -822,2 +869,3 @@ "microphone": 61744,

"mixcloud": 62089,
"mixer": 63830,
"mizuni": 62412,

@@ -840,2 +888,3 @@ "mobile": 61707,

"mountain": 63228,
"mouse": 63692,
"mouse-pointer": 62021,

@@ -850,3 +899,2 @@ "mug-hot": 63414,

"nimblr": 62888,
"nintendo-switch": 62488,
"node": 62489,

@@ -870,2 +918,3 @@ "node-js": 62419,

"optin-monster": 62012,
"orcid": 63698,
"osi": 62490,

@@ -904,2 +953,3 @@ "otter": 63232,

"penny-arcade": 63236,
"people-arrows": 63848,
"people-carry": 62670,

@@ -915,5 +965,8 @@ "pepper-hot": 63510,

"phone": 61589,
"phone-alt": 63609,
"phone-slash": 62429,
"phone-square": 61592,
"phone-square-alt": 63611,
"phone-volume": 62112,
"photo-video": 63612,
"php": 62551,

@@ -924,2 +977,3 @@ "pied-piper": 62126,

"pied-piper-pp": 61863,
"pied-piper-square": 63774,
"piggy-bank": 62675,

@@ -935,2 +989,3 @@ "pills": 62596,

"plane-departure": 62896,
"plane-slash": 63849,
"play": 61515,

@@ -961,2 +1016,4 @@ "play-circle": 61764,

"project-diagram": 62786,
"pump-medical": 63850,
"pump-soap": 63851,
"pushed": 62433,

@@ -987,2 +1044,3 @@ "puzzle-piece": 61742,

"receipt": 62787,
"record-vinyl": 63705,
"recycle": 61880,

@@ -997,2 +1055,3 @@ "red-river": 62435,

"registered": 62045,
"remove-format": 63613,
"renren": 61835,

@@ -1028,2 +1087,3 @@ "reply": 62437,

"safari": 62055,
"salesforce": 63547,
"sass": 62494,

@@ -1057,2 +1117,3 @@ "satellite": 63423,

"shield-alt": 62445,
"shield-virus": 63852,
"ship": 61978,

@@ -1062,2 +1123,3 @@ "shipping-fast": 62603,

"shoe-prints": 62795,
"shopify": 63831,
"shopping-bag": 62096,

@@ -1108,2 +1170,3 @@ "shopping-basket": 62097,

"snowplow": 63442,
"soap": 63854,
"socks": 63126,

@@ -1113,8 +1176,14 @@ "solar-panel": 62906,

"sort-alpha-down": 61789,
"sort-alpha-down-alt": 63617,
"sort-alpha-up": 61790,
"sort-alpha-up-alt": 63618,
"sort-amount-down": 61792,
"sort-amount-down-alt": 63620,
"sort-amount-up": 61793,
"sort-amount-up-alt": 63621,
"sort-down": 61661,
"sort-numeric-down": 61794,
"sort-numeric-down-alt": 63622,
"sort-numeric-up": 61795,
"sort-numeric-up-alt": 63623,
"sort-up": 61662,

@@ -1126,2 +1195,4 @@ "soundcloud": 61886,

"speakap": 62451,
"speaker-deck": 63548,
"spell-check": 63633,
"spider": 63255,

@@ -1138,2 +1209,3 @@ "spinner": 61712,

"stack-overflow": 61804,
"stackpath": 63554,
"stamp": 62911,

@@ -1158,4 +1230,7 @@ "star": 61445,

"stopwatch": 62194,
"stopwatch-20": 63855,
"store": 62798,
"store-alt": 62799,
"store-alt-slash": 63856,
"store-slash": 63857,
"strava": 62504,

@@ -1182,4 +1257,6 @@ "stream": 62800,

"swatchbook": 62915,
"swift": 63713,
"swimmer": 62916,
"swimming-pool": 62917,
"symfony": 63549,
"synagogue": 63131,

@@ -1239,2 +1316,3 @@ "sync": 61473,

"toilet-paper": 63262,
"toilet-paper-slash": 63858,
"toolbox": 62802,

@@ -1249,2 +1327,3 @@ "tools": 63449,

"traffic-light": 63031,
"trailer": 63809,
"train": 62008,

@@ -1279,2 +1358,3 @@ "tram": 63450,

"uikit": 62467,
"umbraco": 63720,
"umbrella": 61673,

@@ -1286,2 +1366,3 @@ "umbrella-beach": 62922,

"uniregistry": 62468,
"unity": 63817,
"universal-access": 62106,

@@ -1344,4 +1425,8 @@ "university": 61852,

"vine": 61898,
"virus": 63860,
"virus-slash": 63861,
"viruses": 63862,
"vk": 61833,
"vnv": 62475,
"voicemail": 63639,
"volleyball-ball": 62559,

@@ -1359,2 +1444,4 @@ "volume-down": 61479,

"water": 63347,
"wave-square": 63550,
"waze": 63551,
"weebly": 62924,

@@ -1397,2 +1484,3 @@ "weibo": 61834,

"yahoo": 61854,
"yammer": 63552,
"yandex": 62483,

@@ -1399,0 +1487,0 @@ "yandex-international": 62484,

@@ -16,6 +16,15 @@ {

"affiliatetheme": 62315,
"air-conditioner": 63732,
"air-freshener": 62928,
"airbnb": 63540,
"alarm-clock": 62286,
"alarm-exclamation": 63555,
"alarm-plus": 63556,
"alarm-snooze": 63557,
"album": 63647,
"album-collection": 63648,
"algolia": 62316,
"alicorn": 63152,
"alien": 63733,
"alien-monster": 63734,
"align-center": 61495,

@@ -25,2 +34,3 @@ "align-justify": 61497,

"align-right": 61496,
"align-slash": 63558,
"alipay": 63042,

@@ -33,2 +43,3 @@ "allergies": 62561,

"amilia": 62317,
"amp-guitar": 63649,
"analytics": 63043,

@@ -130,2 +141,4 @@ "anchor": 61757,

"bacon": 63461,
"bacteria": 63833,
"bacterium": 63834,
"badge": 62261,

@@ -135,3 +148,6 @@ "badge-check": 62262,

"badge-percent": 63046,
"badge-sheriff": 63650,
"badger-honey": 63156,
"bags-shopping": 63559,
"bahai": 63078,
"balance-scale": 62030,

@@ -146,2 +162,3 @@ "balance-scale-left": 62741,

"bandcamp": 62165,
"banjo": 63651,
"barcode": 61482,

@@ -165,3 +182,7 @@ "barcode-alt": 62563,

"battery-three-quarters": 62017,
"battle-net": 63541,
"bed": 62006,
"bed-alt": 63735,
"bed-bunk": 63736,
"bed-empty": 63737,
"beer": 61692,

@@ -171,2 +192,5 @@ "behance": 61876,

"bell": 61683,
"bell-exclamation": 63560,
"bell-on": 63738,
"bell-plus": 63561,
"bell-school": 62933,

@@ -176,5 +200,8 @@ "bell-school-slash": 62934,

"bells": 63359,
"betamax": 63652,
"bezier-curve": 62811,
"bible": 63047,
"bicycle": 61958,
"biking": 63562,
"biking-mountain": 63563,
"bimobject": 62328,

@@ -193,2 +220,5 @@ "binoculars": 61925,

"blind": 62109,
"blinds": 63739,
"blinds-open": 63740,
"blinds-raised": 63741,
"blog": 63361,

@@ -217,4 +247,18 @@ "blogger": 62332,

"books-medical": 63464,
"boombox": 63653,
"boot": 63362,
"booth-curtain": 63284,
"bootstrap": 63542,
"border-all": 63564,
"border-bottom": 63565,
"border-center-h": 63644,
"border-center-v": 63645,
"border-inner": 63566,
"border-left": 63567,
"border-none": 63568,
"border-outer": 63569,
"border-right": 63570,
"border-style": 63571,
"border-style-alt": 63572,
"border-top": 63573,
"bow-arrow": 63161,

@@ -231,2 +275,3 @@ "bowling-ball": 62518,

"box-open": 62622,
"box-tissue": 63835,
"box-up": 62623,

@@ -245,2 +290,4 @@ "box-usd": 62624,

"briefcase-medical": 62569,
"bring-forward": 63574,
"bring-front": 63575,
"broadcast-tower": 62745,

@@ -251,2 +298,3 @@ "broom": 62746,

"btc": 61786,
"buffer": 63543,
"bug": 61832,

@@ -258,2 +306,3 @@ "building": 61869,

"bullseye-pointer": 63049,
"burger-soda": 63576,
"burn": 62570,

@@ -266,4 +315,6 @@ "buromobelexperte": 62335,

"business-time": 63050,
"buy-n-large": 63654,
"buysellads": 61965,
"cabinet-filing": 63051,
"cactus": 63655,
"calculator": 61932,

@@ -282,4 +333,8 @@ "calculator-alt": 63052,

"calendar-week": 63364,
"camcorder": 63656,
"camera": 61488,
"camera-alt": 62258,
"camera-home": 63742,
"camera-movie": 63657,
"camera-polaroid": 63658,
"camera-retro": 61571,

@@ -297,3 +352,5 @@ "campfire": 63162,

"car-battery": 62943,
"car-building": 63577,
"car-bump": 62944,
"car-bus": 63578,
"car-crash": 62945,

@@ -305,2 +362,4 @@ "car-garage": 62946,

"car-wash": 62950,
"caravan": 63743,
"caravan-alt": 63744,
"caret-circle-down": 62253,

@@ -319,6 +378,9 @@ "caret-circle-left": 62254,

"carrot": 63367,
"cars": 63579,
"cart-arrow-down": 61976,
"cart-plus": 61975,
"cash-register": 63368,
"cassette-tape": 63659,
"cat": 63166,
"cat-space": 63745,
"cauldron": 63167,

@@ -335,2 +397,3 @@ "cc-amazon-pay": 62509,

"cc-visa": 61936,
"cctv": 63660,
"centercode": 62336,

@@ -394,2 +457,3 @@ "centos": 63369,

"chrome": 62056,
"chromecast": 63544,
"church": 62749,

@@ -399,2 +463,3 @@ "circle": 61713,

"city": 63055,
"clarinet": 63661,
"claw-marks": 63170,

@@ -420,2 +485,3 @@ "clinic-medical": 63474,

"cloud-moon-rain": 63292,
"cloud-music": 63662,
"cloud-rain": 63293,

@@ -446,8 +512,12 @@ "cloud-rainbow": 63294,

"coffee": 61684,
"coffee-pot": 63746,
"coffee-togo": 63173,
"coffin": 63174,
"coffin-cross": 63825,
"cog": 61459,
"cogs": 61573,
"coin": 63580,
"coins": 62750,
"columns": 61659,
"comet": 63747,
"comment": 61557,

@@ -463,2 +533,3 @@ "comment-alt": 62074,

"comment-alt-minus": 62631,
"comment-alt-music": 63663,
"comment-alt-plus": 62632,

@@ -476,2 +547,3 @@ "comment-alt-slash": 62633,

"comment-minus": 62641,
"comment-music": 63664,
"comment-plus": 62642,

@@ -492,5 +564,8 @@ "comment-slash": 62643,

"compress-wide": 62246,
"computer-classic": 63665,
"computer-speaker": 63666,
"concierge-bell": 62818,
"confluence": 63373,
"connectdevelop": 61966,
"construction": 63581,
"container-storage": 62647,

@@ -505,4 +580,7 @@ "contao": 62061,

"corn": 63175,
"cotton-bureau": 63646,
"couch": 62648,
"cow": 63176,
"cowbell": 63667,
"cowbell-more": 63668,
"cpanel": 62344,

@@ -547,2 +625,3 @@ "creative-commons": 62046,

"dagger": 63179,
"dailymotion": 63826,
"dashcube": 61968,

@@ -582,2 +661,3 @@ "database": 61888,

"digg": 61862,
"digging": 63582,
"digital-ocean": 62353,

@@ -587,2 +667,3 @@ "digital-tachograph": 62822,

"directions": 62955,
"disc-drive": 63669,
"discord": 62354,

@@ -620,2 +701,4 @@ "discourse": 62355,

"dribbble-square": 62359,
"drone": 63583,
"drone-alt": 63584,
"dropbox": 61803,

@@ -627,2 +710,4 @@ "drum": 62825,

"drupal": 61865,
"dryer": 63585,
"dryer-alt": 63586,
"duck": 63192,

@@ -669,2 +754,3 @@ "dumbbell": 62539,

"euro-sign": 61779,
"evernote": 63545,
"exchange": 61676,

@@ -694,5 +780,10 @@ "exchange-alt": 62306,

"facebook-square": 61570,
"fan": 63587,
"fan-table": 63748,
"fantasy-flight-games": 63196,
"farm": 63588,
"fast-backward": 61513,
"fast-forward": 61520,
"faucet": 63749,
"faucet-drip": 63750,
"fax": 61868,

@@ -730,2 +821,3 @@ "feather": 62765,

"file-minus": 62232,
"file-music": 63670,
"file-pdf": 61889,

@@ -735,2 +827,3 @@ "file-plus": 62233,

"file-prescription": 62834,
"file-search": 63589,
"file-signature": 62835,

@@ -748,2 +841,3 @@ "file-spreadsheet": 63067,

"film-alt": 62368,
"film-canister": 63671,
"filter": 61616,

@@ -756,2 +850,3 @@ "fingerprint": 62839,

"firefox": 62057,
"firefox-browser": 63751,
"fireplace": 63386,

@@ -770,2 +865,3 @@ "first-aid": 62585,

"flame": 63199,
"flashlight": 63672,
"flask": 61635,

@@ -780,5 +876,8 @@ "flask-poison": 63200,

"flushed": 62841,
"flute": 63673,
"flux-capacitor": 63674,
"fly": 62487,
"fog": 63310,
"folder": 61563,
"folder-download": 63827,
"folder-minus": 63069,

@@ -789,2 +888,3 @@ "folder-open": 61564,

"folder-tree": 63490,
"folder-upload": 63828,
"folders": 63072,

@@ -796,2 +896,3 @@ "font": 61489,

"font-awesome-logo-full": 62694,
"font-case": 63590,
"fonticons": 62080,

@@ -821,3 +922,11 @@ "fonticons-fi": 62370,

"galactic-senate": 62733,
"galaxy": 63752,
"game-board": 63591,
"game-board-alt": 63592,
"game-console-handheld": 63675,
"gamepad": 61723,
"gamepad-alt": 63676,
"garage": 63753,
"garage-car": 63754,
"garage-open": 63755,
"gas-pump": 62767,

@@ -837,2 +946,3 @@ "gas-pump-slash": 62964,

"git": 61907,
"git-alt": 63553,
"git-square": 61906,

@@ -848,2 +958,3 @@ "github": 61595,

"glass-cheers": 63391,
"glass-citrus": 63593,
"glass-martini": 61440,

@@ -878,2 +989,3 @@ "glass-martini-alt": 62843,

"graduation-cap": 61853,
"gramophone": 63677,
"gratipay": 61828,

@@ -904,2 +1016,4 @@ "grav": 62166,

"guitar": 63398,
"guitar-electric": 63678,
"guitars": 63679,
"gulp": 62382,

@@ -910,2 +1024,3 @@ "h-square": 61693,

"h3": 62229,
"h4": 63594,
"hacker-news": 61908,

@@ -923,2 +1038,3 @@ "hacker-news-square": 62383,

"hand-holding-magic": 63205,
"hand-holding-medical": 63836,
"hand-holding-seedling": 62655,

@@ -939,2 +1055,3 @@ "hand-holding-usd": 62656,

"hand-scissors": 62039,
"hand-sparkles": 63837,
"hand-spock": 62041,

@@ -945,7 +1062,13 @@ "hands": 62658,

"hands-usd": 62661,
"hands-wash": 63838,
"handshake": 62133,
"handshake-alt": 62662,
"handshake-alt-slash": 63839,
"handshake-slash": 63840,
"hanukiah": 63206,
"hard-hat": 63495,
"hashtag": 62098,
"hat-chef": 63595,
"hat-cowboy": 63680,
"hat-cowboy-side": 63681,
"hat-santa": 63399,

@@ -955,7 +1078,11 @@ "hat-winter": 63400,

"hat-wizard": 63208,
"haykal": 63078,
"hdd": 61600,
"head-side": 63209,
"head-side-brain": 63496,
"head-side-cough": 63841,
"head-side-cough-slash": 63842,
"head-side-headphones": 63682,
"head-side-mask": 63843,
"head-side-medical": 63497,
"head-side-virus": 63844,
"head-vr": 63210,

@@ -972,2 +1099,3 @@ "heading": 61916,

"heartbeat": 61982,
"heat": 63756,
"helicopter": 62771,

@@ -993,5 +1121,7 @@ "helmet-battle": 63211,

"hooli": 62503,
"horizontal-rule": 63596,
"hornbill": 62866,
"horse": 63216,
"horse-head": 63403,
"horse-saddle": 63683,
"hospital": 61688,

@@ -1010,4 +1140,11 @@ "hospital-alt": 62589,

"hourglass-start": 62033,
"house": 63757,
"house-damage": 63217,
"house-day": 63758,
"house-flood": 63311,
"house-leave": 63759,
"house-night": 63760,
"house-return": 63761,
"house-signal": 63762,
"house-user": 63845,
"houzz": 62076,

@@ -1023,7 +1160,11 @@ "hryvnia": 63218,

"icicles": 63405,
"icons": 63597,
"icons-alt": 63598,
"id-badge": 62145,
"id-card": 62146,
"id-card-alt": 62591,
"ideal": 63763,
"igloo": 63406,
"image": 61502,
"image-polaroid": 63684,
"images": 62210,

@@ -1043,2 +1184,3 @@ "imdb": 62168,

"instagram": 61805,
"instagram-square": 63829,
"integral": 63079,

@@ -1053,2 +1195,3 @@ "intercom": 63407,

"italic": 61491,
"itch-io": 63546,
"itunes": 62388,

@@ -1066,7 +1209,11 @@ "itunes-note": 62389,

"journal-whills": 63082,
"joystick": 63685,
"js": 62392,
"js-square": 62393,
"jsfiddle": 61900,
"jug": 63686,
"kaaba": 63083,
"kaggle": 62970,
"kazoo": 63687,
"kerning": 63599,
"key": 61572,

@@ -1091,2 +1238,4 @@ "key-skeleton": 63219,

"lamp": 62666,
"lamp-desk": 63764,
"lamp-floor": 63765,
"landmark": 63087,

@@ -1097,4 +1246,6 @@ "landmark-alt": 63314,

"laptop-code": 62972,
"laptop-house": 63846,
"laptop-medical": 63506,
"laravel": 62397,
"lasso": 63688,
"lastfm": 61954,

@@ -1123,2 +1274,6 @@ "lastfm-square": 61955,

"life-ring": 61901,
"light-ceiling": 63766,
"light-switch": 63767,
"light-switch-off": 63768,
"light-switch-on": 63769,
"lightbulb": 61675,

@@ -1131,2 +1286,4 @@ "lightbulb-dollar": 63088,

"line": 62400,
"line-columns": 63600,
"line-height": 63601,
"link": 61633,

@@ -1141,2 +1298,3 @@ "linkedin": 61580,

"list-alt": 61474,
"list-music": 63689,
"list-ol": 61643,

@@ -1165,2 +1323,3 @@ "list-ul": 61642,

"lungs": 62980,
"lungs-virus": 63847,
"lyft": 62403,

@@ -1204,2 +1363,3 @@ "mace": 63224,

"maxcdn": 61750,
"mdb": 63690,
"meat": 63508,

@@ -1223,2 +1383,3 @@ "medal": 62882,

"meteor": 63315,
"microblog": 63770,
"microchip": 62171,

@@ -1229,4 +1390,6 @@ "microphone": 61744,

"microphone-slash": 61745,
"microphone-stand": 63691,
"microscope": 62992,
"microsoft": 62410,
"microwave": 63771,
"mind-share": 63095,

@@ -1242,2 +1405,3 @@ "minus": 61544,

"mixcloud": 62089,
"mixer": 63830,
"mizuni": 62412,

@@ -1256,2 +1420,4 @@ "mobile": 61707,

"money-check-alt": 62781,
"money-check-edit": 63602,
"money-check-edit-alt": 63603,
"monitor-heart-rate": 62993,

@@ -1268,6 +1434,14 @@ "monkey": 63227,

"mountains": 63229,
"mouse": 63692,
"mouse-alt": 63693,
"mouse-pointer": 62021,
"mp3-player": 63694,
"mug": 63604,
"mug-hot": 63414,
"mug-marshmallows": 63415,
"mug-tea": 63605,
"music": 61441,
"music-alt": 63695,
"music-alt-slash": 63696,
"music-slash": 63697,
"napster": 62418,

@@ -1280,3 +1454,2 @@ "narwhal": 63230,

"nimblr": 62888,
"nintendo-switch": 62488,
"node": 62489,

@@ -1303,2 +1476,3 @@ "node-js": 62419,

"optin-monster": 62012,
"orcid": 63698,
"ornament": 63416,

@@ -1308,2 +1482,6 @@ "osi": 62490,

"outdent": 61499,
"outlet": 63772,
"oven": 63773,
"overline": 63606,
"page-break": 63607,
"page4": 62423,

@@ -1323,2 +1501,3 @@ "pagelines": 61836,

"paragraph": 61917,
"paragraph-rtl": 63608,
"parking": 62784,

@@ -1351,2 +1530,3 @@ "parking-circle": 62997,

"penny-arcade": 63236,
"people-arrows": 63848,
"people-carry": 62670,

@@ -1366,9 +1546,16 @@ "pepper-hot": 63510,

"phone": 61589,
"phone-alt": 63609,
"phone-laptop": 63610,
"phone-office": 63101,
"phone-plus": 62674,
"phone-rotary": 63699,
"phone-slash": 62429,
"phone-square": 61592,
"phone-square-alt": 63611,
"phone-volume": 62112,
"photo-video": 63612,
"php": 62551,
"pi": 63102,
"piano": 63700,
"piano-keyboard": 63701,
"pie": 63237,

@@ -1379,2 +1566,3 @@ "pied-piper": 62126,

"pied-piper-pp": 61863,
"pied-piper-square": 63774,
"pig": 63238,

@@ -1393,2 +1581,5 @@ "piggy-bank": 62675,

"plane-departure": 62896,
"plane-slash": 63849,
"planet-moon": 63775,
"planet-ringed": 63776,
"play": 61515,

@@ -1406,2 +1597,3 @@ "play-circle": 61764,

"podium-star": 63320,
"police-box": 63777,
"poll": 63105,

@@ -1414,2 +1606,4 @@ "poll-h": 63106,

"popcorn": 63513,
"portal-enter": 63778,
"portal-exit": 63779,
"portrait": 62432,

@@ -1430,2 +1624,5 @@ "pound-sign": 61780,

"project-diagram": 62786,
"projector": 63702,
"pump-medical": 63850,
"pump-soap": 63851,
"pumpkin": 63239,

@@ -1450,4 +1647,7 @@ "pushed": 62433,

"racquet": 62554,
"radar": 63780,
"radiation": 63417,
"radiation-alt": 63418,
"radio": 63703,
"radio-alt": 63704,
"rainbow": 63323,

@@ -1460,2 +1660,3 @@ "raindrops": 63324,

"ravelry": 62169,
"raygun": 63781,
"react": 62491,

@@ -1466,2 +1667,3 @@ "reacteurope": 63325,

"receipt": 62787,
"record-vinyl": 63705,
"rectangle-landscape": 62202,

@@ -1478,3 +1680,5 @@ "rectangle-portrait": 62203,

"redo-alt": 62201,
"refrigerator": 63782,
"registered": 62045,
"remove-format": 63613,
"renren": 61835,

@@ -1501,2 +1705,3 @@ "repeat": 62307,

"rocket": 61749,
"rocket-launch": 63783,
"rocketchat": 62440,

@@ -1507,2 +1712,3 @@ "rockrms": 62441,

"route-interstate": 63003,
"router": 63706,
"rss": 61598,

@@ -1525,2 +1731,3 @@ "rss-square": 61763,

"salad": 63518,
"salesforce": 63547,
"sandwich": 63519,

@@ -1532,5 +1739,8 @@ "sass": 62494,

"save": 61639,
"sax-hot": 63707,
"saxophone": 63708,
"scalpel": 63005,
"scalpel-path": 63006,
"scanner": 62600,
"scanner-image": 63731,
"scanner-keyboard": 62601,

@@ -1558,2 +1768,9 @@ "scanner-touchscreen": 62602,

"sellsy": 61971,
"send-back": 63614,
"send-backward": 63615,
"sensor": 63784,
"sensor-alert": 63785,
"sensor-fire": 63786,
"sensor-on": 63787,
"sensor-smoke": 63788,
"server": 62003,

@@ -1573,2 +1790,3 @@ "servicestack": 62444,

"shield-cross": 63250,
"shield-virus": 63852,
"ship": 61978,

@@ -1580,2 +1798,3 @@ "shipping-fast": 62603,

"shoe-prints": 62795,
"shopify": 63831,
"shopping-bag": 62096,

@@ -1610,5 +1829,9 @@ "shopping-basket": 62097,

"signal-slash": 63125,
"signal-stream": 63709,
"signature": 62903,
"sim-card": 63428,
"simplybuilt": 61973,
"sink": 63853,
"siren": 63789,
"siren-on": 63790,
"sistrix": 62446,

@@ -1625,2 +1848,3 @@ "sitemap": 61672,

"skull": 62796,
"skull-cow": 63710,
"skull-crossbones": 63252,

@@ -1652,2 +1876,3 @@ "skyatlas": 61974,

"snapchat-square": 62125,
"snooze": 63616,
"snow-blowing": 63329,

@@ -1660,12 +1885,32 @@ "snowboarding": 63438,

"snowplow": 63442,
"soap": 63854,
"socks": 63126,
"solar-panel": 62906,
"solar-system": 63791,
"sort": 61660,
"sort-alpha-down": 61789,
"sort-alpha-down-alt": 63617,
"sort-alpha-up": 61790,
"sort-alpha-up-alt": 63618,
"sort-alt": 63619,
"sort-amount-down": 61792,
"sort-amount-down-alt": 63620,
"sort-amount-up": 61793,
"sort-amount-up-alt": 63621,
"sort-circle": 63792,
"sort-circle-down": 63793,
"sort-circle-up": 63794,
"sort-down": 61661,
"sort-numeric-down": 61794,
"sort-numeric-down-alt": 63622,
"sort-numeric-up": 61795,
"sort-numeric-up-alt": 63623,
"sort-shapes-down": 63624,
"sort-shapes-down-alt": 63625,
"sort-shapes-up": 63626,
"sort-shapes-up-alt": 63627,
"sort-size-down": 63628,
"sort-size-down-alt": 63629,
"sort-size-up": 63630,
"sort-size-up-alt": 63631,
"sort-up": 61662,

@@ -1677,4 +1922,11 @@ "soundcloud": 61886,

"space-shuttle": 61847,
"space-station-moon": 63795,
"space-station-moon-alt": 63796,
"spade": 62196,
"sparkles": 63632,
"speakap": 62451,
"speaker": 63711,
"speaker-deck": 63548,
"speakers": 63712,
"spell-check": 63633,
"spider": 63255,

@@ -1688,2 +1940,3 @@ "spider-black-widow": 63256,

"spray-can": 62909,
"sprinkler": 63797,
"square": 61640,

@@ -1697,2 +1950,3 @@ "square-full": 62556,

"stack-overflow": 61804,
"stackpath": 63554,
"staff": 63259,

@@ -1708,3 +1962,8 @@ "stamp": 62911,

"star-of-life": 63009,
"star-shooting": 63798,
"starfighter": 63799,
"starfighter-alt": 63800,
"stars": 63330,
"starship": 63801,
"starship-freighter": 63802,
"staylinked": 62453,

@@ -1726,4 +1985,7 @@ "steak": 63524,

"stopwatch": 62194,
"stopwatch-20": 63855,
"store": 62798,
"store-alt": 62799,
"store-alt-slash": 63856,
"store-slash": 63857,
"strava": 62504,

@@ -1748,2 +2010,3 @@ "stream": 62800,

"sun-haze": 63333,
"sunglasses": 63634,
"sunrise": 63334,

@@ -1757,6 +2020,11 @@ "sunset": 63335,

"swatchbook": 62915,
"swift": 63713,
"swimmer": 62916,
"swimming-pool": 62917,
"sword": 63260,
"sword-laser": 63803,
"sword-laser-alt": 63804,
"swords": 63261,
"swords-laser": 63805,
"symfony": 63549,
"synagogue": 63131,

@@ -1800,2 +2068,4 @@ "sync": 61473,

"telegram-plane": 62462,
"telescope": 63806,
"temperature-down": 63807,
"temperature-frigid": 63336,

@@ -1805,2 +2075,3 @@ "temperature-high": 63337,

"temperature-low": 63339,
"temperature-up": 63808,
"tencent-weibo": 61909,

@@ -1810,3 +2081,5 @@ "tenge": 63447,

"terminal": 61728,
"text": 63635,
"text-height": 61492,
"text-size": 63636,
"text-width": 61493,

@@ -1854,2 +2127,3 @@ "th": 61450,

"toilet-paper-alt": 63263,
"toilet-paper-slash": 63858,
"tombstone": 63264,

@@ -1872,2 +2146,3 @@ "tombstone-alt": 63265,

"traffic-light-stop": 63034,
"trailer": 63809,
"train": 62008,

@@ -1877,2 +2152,7 @@ "tram": 63450,

"transgender-alt": 61989,
"transporter": 63810,
"transporter-1": 63811,
"transporter-2": 63812,
"transporter-3": 63813,
"transporter-empty": 63814,
"trash": 61944,

@@ -1882,2 +2162,4 @@ "trash-alt": 62189,

"trash-restore-alt": 63530,
"trash-undo": 63637,
"trash-undo-alt": 63638,
"treasure-chest": 63267,

@@ -1893,2 +2175,3 @@ "tree": 61883,

"triangle": 62188,
"triangle-music": 63714,
"tripadvisor": 62050,

@@ -1906,2 +2189,3 @@ "trophy": 61585,

"truck-ramp": 62688,
"trumpet": 63715,
"tshirt": 62803,

@@ -1912,4 +2196,7 @@ "tty": 61924,

"turkey": 63269,
"turntable": 63716,
"turtle": 63270,
"tv": 62060,
"tv-alt": 63717,
"tv-music": 63718,
"tv-retro": 62465,

@@ -1919,6 +2206,10 @@ "twitch": 61928,

"twitter-square": 61569,
"typewriter": 63719,
"typo3": 62507,
"uber": 62466,
"ubuntu": 63455,
"ufo": 63815,
"ufo-beam": 63816,
"uikit": 62467,
"umbraco": 63720,
"umbrella": 61673,

@@ -1932,2 +2223,3 @@ "umbrella-beach": 62922,

"uniregistry": 62468,
"unity": 63817,
"universal-access": 62106,

@@ -1942,5 +2234,7 @@ "university": 61852,

"usb": 62087,
"usb-drive": 63721,
"usd-circle": 62184,
"usd-square": 62185,
"user": 61447,
"user-alien": 63818,
"user-alt": 62470,

@@ -1954,2 +2248,3 @@ "user-alt-slash": 62714,

"user-cog": 62718,
"user-cowboy": 63722,
"user-crown": 63140,

@@ -1966,5 +2261,7 @@ "user-edit": 62719,

"user-minus": 62723,
"user-music": 63723,
"user-ninja": 62724,
"user-nurse": 63535,
"user-plus": 62004,
"user-robot": 63819,
"user-secret": 61979,

@@ -1976,2 +2273,4 @@ "user-shield": 62725,

"user-times": 62005,
"user-unlock": 63832,
"user-visor": 63820,
"users": 61632,

@@ -1982,2 +2281,3 @@ "users-class": 63037,

"users-medical": 63536,
"users-slash": 63859,
"usps": 63457,

@@ -1991,2 +2291,4 @@ "ussunnah": 62471,

"vaadin": 62472,
"vacuum": 63821,
"vacuum-robot": 63822,
"value-absolute": 63142,

@@ -1997,2 +2299,3 @@ "vector-square": 62923,

"venus-mars": 61992,
"vhs": 63724,
"viacoin": 62007,

@@ -2012,4 +2315,9 @@ "viadeo": 62121,

"vine": 61898,
"violin": 63725,
"virus": 63860,
"virus-slash": 63861,
"viruses": 63862,
"vk": 61833,
"vnv": 62475,
"voicemail": 63639,
"volcano": 63344,

@@ -2027,3 +2335,5 @@ "volleyball-ball": 62559,

"vuejs": 62495,
"wagon-covered": 63726,
"walker": 63537,
"walkie-talkie": 63727,
"walking": 62804,

@@ -2035,3 +2345,5 @@ "wallet": 62805,

"warehouse-alt": 62613,
"washer": 63640,
"watch": 62177,
"watch-calculator": 63728,
"watch-fitness": 63038,

@@ -2041,2 +2353,8 @@ "water": 63347,

"water-rise": 63349,
"wave-sine": 63641,
"wave-square": 63550,
"wave-triangle": 63642,
"waveform": 63729,
"waveform-path": 63730,
"waze": 63551,
"webcam": 63538,

@@ -2062,2 +2380,3 @@ "webcam-slash": 63539,

"wind": 63278,
"wind-turbine": 63643,
"wind-warning": 63350,

@@ -2067,2 +2386,4 @@ "window": 62478,

"window-close": 62480,
"window-frame": 63823,
"window-frame-open": 63824,
"window-maximize": 62160,

@@ -2094,2 +2415,3 @@ "window-minimize": 62161,

"yahoo": 61854,
"yammer": 63552,
"yandex": 62483,

@@ -2096,0 +2418,0 @@ "yandex-international": 62484,

{
"360": 58743,
"10k": 59729,
"10mp": 59730,
"11mp": 59731,
"12mp": 59732,
"13mp": 59733,
"14mp": 59734,
"15mp": 59735,
"16mp": 59736,
"17mp": 59737,
"18mp": 59738,
"19mp": 59739,
"1k": 59740,
"1k-plus": 59741,
"20mp": 59742,
"21mp": 59743,
"22mp": 59744,
"23mp": 59745,
"24mp": 59746,
"2k": 59747,
"2k-plus": 59748,
"2mp": 59749,
"3d-rotation": 59469,
"3k": 59750,
"3k-plus": 59751,
"3mp": 59752,
"4k": 57458,
"4k-plus": 59753,
"4mp": 59754,
"5g": 61240,
"5k": 59755,
"5k-plus": 59756,
"5mp": 59757,
"6-ft-apart": 61982,
"6k": 59758,
"6k-plus": 59759,
"6mp": 59760,
"7k": 59761,
"7k-plus": 59762,
"7mp": 59763,
"8k": 59764,
"8k-plus": 59765,
"8mp": 59766,
"9k": 59767,
"9k-plus": 59768,
"9mp": 59769,
"ac-unit": 60219,

@@ -8,3 +53,5 @@ "access-alarm": 57744,

"accessibility": 59470,
"accessibility-new": 59692,
"accessible": 59668,
"accessible-forward": 59700,
"account-balance": 59471,

@@ -14,2 +61,4 @@ "account-balance-wallet": 59472,

"account-circle": 59475,
"account-tree": 59770,
"ad-units": 61241,
"adb": 58894,

@@ -21,9 +70,25 @@ "add": 57669,

"add-box": 57670,
"add-business": 59177,
"add-call": 57576,
"add-chart": 59771,
"add-circle": 57671,
"add-circle-outline": 57672,
"add-comment": 57958,
"add-ic-call": 59772,
"add-link": 57720,
"add-location": 58727,
"add-location-alt": 61242,
"add-moderator": 59773,
"add-photo-alternate": 58430,
"add-road": 61243,
"add-shopping-cart": 59476,
"add-task": 62010,
"add-to-drive": 58972,
"add-to-home-screen": 57854,
"add-to-photos": 58269,
"add-to-queue": 57436,
"addchart": 61244,
"adjust": 58270,
"admin-panel-settings": 61245,
"agriculture": 60025,
"airline-seat-flat": 58928,

@@ -39,2 +104,4 @@ "airline-seat-flat-angled": 58929,

"airplanemode-inactive": 57748,
"airplanemode-off": 57748,
"airplanemode-on": 57749,
"airplay": 57429,

@@ -47,9 +114,32 @@ "airport-shuttle": 60220,

"album": 57369,
"align-horizontal-center": 57359,
"align-horizontal-left": 57357,
"align-horizontal-right": 57360,
"align-vertical-bottom": 57365,
"align-vertical-center": 57361,
"align-vertical-top": 57356,
"all-inbox": 59775,
"all-inclusive": 60221,
"all-out": 59659,
"alt-route": 61828,
"alternate-email": 57574,
"amp-stories": 59923,
"analytics": 61246,
"anchor": 61901,
"android": 59481,
"animation": 59164,
"announcement": 59482,
"apartment": 59968,
"api": 61879,
"app-blocking": 61247,
"app-registration": 61248,
"app-settings-alt": 61249,
"approval": 59778,
"apps": 58819,
"architecture": 59963,
"archive": 57673,
"arrow-back": 58820,
"arrow-back-ios": 58848,
"arrow-circle-down": 61825,
"arrow-circle-up": 61826,
"arrow-downward": 58843,

@@ -60,4 +150,9 @@ "arrow-drop-down": 58821,

"arrow-forward": 58824,
"arrow-forward-ios": 58849,
"arrow-left": 58846,
"arrow-right": 58847,
"arrow-right-alt": 59713,
"arrow-upward": 58840,
"art-track": 57440,
"article": 61250,
"aspect-ratio": 59483,

@@ -72,11 +167,33 @@ "assessment": 59484,

"assistant": 58271,
"assistant-direction": 59784,
"assistant-navigation": 59785,
"assistant-photo": 58272,
"atm": 58739,
"attach-email": 59998,
"attach-file": 57894,
"attach-money": 57895,
"attachment": 58044,
"attractions": 59986,
"audiotrack": 58273,
"auto-awesome": 58975,
"auto-awesome-mosaic": 58976,
"auto-awesome-motion": 58977,
"auto-delete": 59980,
"auto-fix-high": 58979,
"auto-fix-normal": 58980,
"auto-fix-off": 58981,
"auto-stories": 58982,
"autorenew": 59491,
"av-timer": 57371,
"baby-changing-station": 61851,
"backpack": 61852,
"backspace": 57674,
"backup": 59492,
"backup-table": 61251,
"badge": 60007,
"bakery-dining": 59987,
"ballot": 57714,
"bar-chart": 57963,
"batch-prediction": 61685,
"bathtub": 59969,
"battery-alert": 57756,

@@ -88,4 +205,9 @@ "battery-charging-full": 57763,

"beach-access": 60222,
"bedtime": 61252,
"beenhere": 58669,
"bento": 61940,
"bike-scooter": 61253,
"biotech": 59962,
"block": 57675,
"block-flipped": 61254,
"bluetooth": 57767,

@@ -100,5 +222,9 @@ "bluetooth-audio": 58895,

"blur-on": 58277,
"bolt": 59915,
"book": 59493,
"book-online": 61975,
"bookmark": 59494,
"bookmark-border": 59495,
"bookmark-outline": 59495,
"bookmarks": 59787,
"border-all": 57896,

@@ -117,2 +243,3 @@ "border-bottom": 57897,

"branding-watermark": 57451,
"breakfast-dining": 59988,
"brightness-1": 58278,

@@ -130,2 +257,4 @@ "brightness-2": 58279,

"broken-image": 58285,
"browser-not-supported": 61255,
"brunch-dining": 60019,
"brush": 58286,

@@ -135,3 +264,5 @@ "bubble-chart": 59101,

"build": 59497,
"build-circle": 61256,
"burst-mode": 58428,
"bus-alert": 59791,
"business": 57519,

@@ -141,2 +272,5 @@ "business-center": 60223,

"cake": 59369,
"calculate": 59999,
"calendar-today": 59701,
"calendar-view-day": 59702,
"call": 57520,

@@ -157,12 +291,24 @@ "call-end": 57521,

"camera-roll": 58291,
"campaign": 61257,
"cancel": 58825,
"cancel-presentation": 57577,
"cancel-schedule-send": 59961,
"car-rental": 59989,
"car-repair": 59990,
"card-giftcard": 59638,
"card-membership": 59639,
"card-travel": 59640,
"carpenter": 61944,
"cases": 59794,
"casino": 60224,
"cast": 58119,
"cast-connected": 58120,
"cast-for-education": 61420,
"category": 58740,
"celebration": 60005,
"cell-wifi": 57580,
"center-focus-strong": 58292,
"center-focus-weak": 58293,
"change-history": 59499,
"charging-station": 61853,
"chat": 57527,

@@ -175,2 +321,4 @@ "chat-bubble": 57546,

"check-circle": 59500,
"check-circle-outline": 59693,
"checkroom": 61854,
"chevron-left": 58827,

@@ -181,7 +329,14 @@ "chevron-right": 58828,

"chrome-reader-mode": 59501,
"circle": 61258,
"circle-notifications": 59796,
"class": 59502,
"clean-hands": 61983,
"cleaning-services": 61695,
"clear": 57676,
"clear-all": 57528,
"close": 58829,
"close-fullscreen": 61903,
"closed-caption": 57372,
"closed-caption-disabled": 61916,
"closed-caption-off": 59798,
"cloud": 58045,

@@ -200,8 +355,19 @@ "cloud-circle": 58046,

"comment": 57529,
"comment-bank": 59982,
"commute": 59712,
"compare": 58297,
"compare-arrows": 59669,
"compass-calibration": 58748,
"compress": 59725,
"computer": 58122,
"confirmation-num": 58936,
"confirmation-number": 58936,
"connect-without-contact": 61987,
"connected-tv": 59800,
"construction": 59964,
"contact-mail": 57552,
"contact-page": 61998,
"contact-phone": 57551,
"contact-support": 59724,
"contactless": 60017,
"contacts": 57530,

@@ -211,5 +377,9 @@ "content-copy": 57677,

"content-paste": 57679,
"control-camera": 57460,
"control-point": 58298,
"control-point-duplicate": 58299,
"copyright": 59660,
"coronavirus": 61985,
"corporate-fare": 61904,
"countertops": 61943,
"create": 57680,

@@ -230,10 +400,18 @@ "create-new-folder": 58060,

"crop-square": 58310,
"dangerous": 59802,
"dashboard": 59505,
"dashboard-customize": 59803,
"data-usage": 57775,
"date-range": 59670,
"deck": 59970,
"dehaze": 58311,
"delete": 59506,
"delete-forever": 59691,
"delete-outline": 59694,
"delete-sweep": 57708,
"delivery-dining": 60018,
"departure-board": 58742,
"description": 59507,
"design-services": 61706,
"desktop-access-disabled": 59805,
"desktop-mac": 58123,

@@ -245,2 +423,4 @@ "desktop-windows": 58124,

"device-hub": 58165,
"device-thermostat": 57855,
"device-unknown": 58169,
"devices": 57777,

@@ -250,2 +430,3 @@ "devices-other": 58167,

"dialpad": 57532,
"dinner-dining": 59991,
"directions": 58670,

@@ -256,8 +437,14 @@ "directions-bike": 58671,

"directions-car": 58673,
"directions-ferry": 58674,
"directions-off": 61711,
"directions-railway": 58676,
"directions-run": 58726,
"directions-subway": 58675,
"directions-train": 58676,
"directions-transit": 58677,
"directions-walk": 58678,
"dirty-lens": 61259,
"disabled-by-default": 62000,
"disc-full": 58896,
"dnd-forwardslash": 58897,
"dns": 59509,

@@ -268,16 +455,56 @@ "do-not-disturb": 58898,

"do-not-disturb-on": 58948,
"do-not-step": 61855,
"do-not-touch": 61872,
"dock": 58126,
"domain": 59374,
"domain-disabled": 57583,
"domain-verification": 61260,
"done": 59510,
"done-all": 59511,
"done-outline": 59695,
"donut-large": 59671,
"donut-small": 59672,
"double-arrow": 59984,
"drafts": 57681,
"drag-handle": 57949,
"drag-indicator": 59717,
"drive-eta": 58899,
"drive-file-move": 58997,
"drive-file-move-outline": 59809,
"drive-file-rename-outline": 59810,
"drive-folder-upload": 59811,
"dry": 61875,
"dry-cleaning": 59992,
"duo": 59813,
"dvr": 57778,
"dynamic-feed": 59924,
"dynamic-form": 61887,
"east": 61919,
"eco": 59957,
"edit": 58313,
"edit-attributes": 58744,
"edit-location": 58728,
"edit-off": 59728,
"edit-road": 61261,
"eject": 59643,
"elderly": 61978,
"electric-bike": 60187,
"electric-car": 60188,
"electric-moped": 60189,
"electric-rickshaw": 60190,
"electric-scooter": 60191,
"electrical-services": 61698,
"elevator": 61856,
"email": 57534,
"emoji-emotions": 59938,
"emoji-events": 59939,
"emoji-flags": 59930,
"emoji-food-beverage": 59931,
"emoji-nature": 59932,
"emoji-objects": 59940,
"emoji-people": 59933,
"emoji-symbols": 59934,
"emoji-transportation": 59935,
"engineering": 59965,
"enhance-photo-translate": 59644,
"enhanced-encryption": 58943,

@@ -287,2 +514,5 @@ "equalizer": 57373,

"error-outline": 57345,
"escalator": 61857,
"escalator-warning": 61868,
"euro": 59925,
"euro-symbol": 59686,

@@ -296,2 +526,3 @@ "ev-station": 58733,

"exit-to-app": 59513,
"expand": 59727,
"expand-less": 58830,

@@ -301,3 +532,6 @@ "expand-more": 58831,

"explore": 59514,
"explore-off": 59816,
"exposure": 58314,
"exposure-minus-1": 58315,
"exposure-minus-2": 58316,
"exposure-neg-1": 58315,

@@ -310,9 +544,17 @@ "exposure-neg-2": 58316,

"face": 59516,
"face-retouching-natural": 61262,
"facebook": 62004,
"fact-check": 61637,
"family-restroom": 61858,
"fast-forward": 57375,
"fast-rewind": 57376,
"fastfood": 58746,
"favorite": 59517,
"favorite-border": 59518,
"favorite-outline": 59518,
"featured-play-list": 57453,
"featured-video": 57454,
"feedback": 59519,
"fence": 61942,
"festival": 60008,
"fiber-dvr": 57437,

@@ -323,3 +565,6 @@ "fiber-manual-record": 57441,

"fiber-smart-record": 57442,
"file-copy": 57715,
"file-download": 58052,
"file-download-done": 59818,
"file-present": 59918,
"file-upload": 58054,

@@ -337,2 +582,3 @@ "filter": 58323,

"filter-9-plus": 58330,
"filter-alt": 61263,
"filter-b-and-w": 58331,

@@ -344,2 +590,3 @@ "filter-center-focus": 58332,

"filter-list": 57682,
"filter-list-alt": 59726,
"filter-none": 58336,

@@ -351,5 +598,10 @@ "filter-tilt-shift": 58338,

"fingerprint": 59661,
"fire-extinguisher": 61912,
"fire-hydrant": 61859,
"fireplace": 59971,
"first-page": 58844,
"fit-screen": 59920,
"fitness-center": 60227,
"flag": 57683,
"flaky": 61264,
"flare": 58340,

@@ -363,2 +615,4 @@ "flash-auto": 58341,

"flip": 58344,
"flip-camera-android": 59959,
"flip-camera-ios": 59960,
"flip-to-back": 59522,

@@ -370,3 +624,5 @@ "flip-to-front": 59523,

"folder-special": 58903,
"follow-the-signs": 61986,
"font-download": 57703,
"food-bank": 61938,
"format-align-center": 57908,

@@ -387,2 +643,3 @@ "format-align-justify": 57909,

"format-list-numbered": 57922,
"format-list-numbered-rtl": 57959,
"format-paint": 57923,

@@ -395,2 +652,3 @@ "format-quote": 57924,

"format-textdirection-r-to-l": 57928,
"format-underline": 57929,
"format-underlined": 57929,

@@ -402,2 +660,4 @@ "forum": 57535,

"forward-5": 57432,
"forward-to-inbox": 61831,
"foundation": 61952,
"free-breakfast": 60228,

@@ -414,2 +674,3 @@ "fullscreen": 58832,

"gif": 59656,
"goat": 1114109,
"golf-course": 60229,

@@ -421,10 +682,18 @@ "gps-fixed": 57779,

"gradient": 58345,
"grading": 59983,
"grain": 58346,
"graphic-eq": 57784,
"grass": 61957,
"grid-off": 58347,
"grid-on": 58348,
"grid-view": 59824,
"group": 59375,
"group-add": 59376,
"group-work": 59526,
"groups": 62003,
"hail": 59825,
"handyman": 61707,
"hardware": 59993,
"hd": 57426,
"hdr-enhanced-select": 61265,
"hdr-off": 58349,

@@ -436,19 +705,45 @@ "hdr-on": 58350,

"headset-mic": 58129,
"headset-off": 58170,
"healing": 58355,
"hearing": 57379,
"hearing-disabled": 61700,
"height": 59926,
"help": 59527,
"help-center": 61888,
"help-outline": 59645,
"high-quality": 57380,
"highlight": 57951,
"highlight-alt": 61266,
"highlight-off": 59528,
"highlight-remove": 59528,
"history": 59529,
"history-edu": 59966,
"history-toggle-off": 61821,
"home": 59530,
"home-filled": 59826,
"home-repair-service": 61696,
"home-work": 59913,
"horizontal-distribute": 57364,
"horizontal-rule": 61704,
"horizontal-split": 59719,
"hot-tub": 60230,
"hotel": 58682,
"hourglass-bottom": 59996,
"hourglass-disabled": 61267,
"hourglass-empty": 59531,
"hourglass-full": 59532,
"hourglass-top": 59995,
"house": 59972,
"house-siding": 61954,
"how-to-reg": 57716,
"how-to-vote": 57717,
"http": 59650,
"https": 59533,
"hvac": 61710,
"icecream": 60009,
"image": 58356,
"image-aspect-ratio": 58357,
"image-not-supported": 61718,
"image-search": 58431,
"imagesearch-roller": 59828,
"import-contacts": 57568,

@@ -463,2 +758,3 @@ "import-export": 57539,

"insert-chart": 57931,
"insert-chart-outlined": 57962,
"insert-comment": 57932,

@@ -470,4 +766,9 @@ "insert-drive-file": 57933,

"insert-photo": 57937,
"insights": 61586,
"integration-instructions": 61268,
"inventory": 57721,
"invert-colors": 59537,
"invert-colors-off": 57540,
"invert-colors-on": 59537,
"ios-share": 59064,
"iso": 58358,

@@ -481,2 +782,3 @@ "keyboard": 58130,

"keyboard-capslock": 58136,
"keyboard-control": 58835,
"keyboard-hide": 58138,

@@ -486,4 +788,8 @@ "keyboard-return": 58139,

"keyboard-voice": 58141,
"king-bed": 59973,
"kitchen": 60231,
"label": 59538,
"label-important": 59703,
"label-important-outline": 59720,
"label-off": 59830,
"label-outline": 59539,

@@ -500,8 +806,13 @@ "landscape": 58359,

"layers-clear": 58684,
"leaderboard": 61964,
"leak-add": 58360,
"leak-remove": 58361,
"leave-bags-at-home": 61979,
"legend-toggle": 61723,
"lens": 58362,
"library-add": 57390,
"library-add-check": 59831,
"library-books": 57391,
"library-music": 57392,
"lightbulb": 57584,
"lightbulb-outline": 59663,

@@ -512,4 +823,7 @@ "line-style": 59673,

"link": 57687,
"link-off": 57711,
"linked-camera": 58424,
"liquor": 60000,
"list": 59542,
"list-alt": 57582,
"live-help": 57542,

@@ -520,2 +834,3 @@ "live-tv": 58937,

"local-atm": 58686,
"local-attraction": 58687,
"local-bar": 58688,

@@ -527,2 +842,3 @@ "local-cafe": 58689,

"local-drink": 58692,
"local-fire-department": 61269,
"local-florist": 58693,

@@ -543,4 +859,7 @@ "local-gas-station": 58694,

"local-play": 58707,
"local-police": 61270,
"local-post-office": 58708,
"local-print-shop": 58709,
"local-printshop": 58709,
"local-restaurant": 58710,
"local-see": 58711,

@@ -551,8 +870,13 @@ "local-shipping": 58712,

"location-disabled": 57782,
"location-history": 58714,
"location-off": 57543,
"location-on": 57544,
"location-pin": 61915,
"location-searching": 57783,
"lock": 59543,
"lock-clock": 61271,
"lock-open": 59544,
"lock-outline": 59545,
"login": 60023,
"logout": 59834,
"looks": 58364,

@@ -569,25 +893,62 @@ "looks-3": 58363,

"loyalty": 59546,
"luggage": 62005,
"lunch-dining": 60001,
"mail": 57688,
"mail-outline": 57569,
"map": 58715,
"maps-ugc": 61272,
"margin": 59835,
"mark-as-unread": 59836,
"mark-chat-read": 61835,
"mark-chat-unread": 61833,
"mark-email-read": 61836,
"mark-email-unread": 61834,
"markunread": 57689,
"markunread-mailbox": 59547,
"masks": 61976,
"maximize": 59696,
"mediation": 61351,
"medical-services": 61705,
"meeting-room": 60239,
"memory": 58146,
"menu": 58834,
"menu-book": 59929,
"menu-open": 59837,
"merge-type": 57938,
"message": 57545,
"messenger": 57546,
"messenger-outline": 57547,
"mic": 57385,
"mic-external-off": 61273,
"mic-external-on": 61274,
"mic-none": 57386,
"mic-off": 57387,
"microwave": 61956,
"military-tech": 59967,
"minimize": 59697,
"miscellaneous-services": 61708,
"missed-video-call": 57459,
"mms": 58904,
"mobile-friendly": 57856,
"mobile-off": 57857,
"mobile-screen-share": 57575,
"mode-comment": 57939,
"mode-edit": 57940,
"model-training": 61647,
"monetization-on": 57955,
"money": 58749,
"money-off": 57948,
"monitor": 61275,
"monochrome-photos": 58371,
"mood": 59378,
"mood-bad": 59379,
"moped": 60200,
"more": 58905,
"more-horiz": 58835,
"more-time": 59997,
"more-vert": 58836,
"motion-photos-off": 59840,
"motion-photos-on": 59841,
"motion-photos-pause": 61991,
"motion-photos-paused": 59842,
"motorcycle": 59675,

@@ -599,6 +960,15 @@ "mouse": 58147,

"movie-filter": 58426,
"mp": 59843,
"multiline-chart": 59103,
"multiple-stop": 61881,
"multitrack-audio": 57784,
"museum": 59958,
"music-note": 58373,
"music-off": 58432,
"music-video": 57443,
"my-library-add": 57390,
"my-library-books": 57391,
"my-library-music": 57392,
"my-location": 58716,
"nat": 61276,
"nature": 58374,

@@ -610,2 +980,3 @@ "nature-people": 58375,

"near-me": 58729,
"near-me-disabled": 61935,
"network-cell": 57785,

@@ -616,9 +987,34 @@ "network-check": 58944,

"new-releases": 57393,
"next-plan": 61277,
"next-week": 57706,
"nfc": 57787,
"night-shelter": 61937,
"nightlife": 60002,
"nightlight-round": 61278,
"nights-stay": 59974,
"no-backpack": 62007,
"no-cell": 61860,
"no-drinks": 61861,
"no-encryption": 58945,
"no-flash": 61862,
"no-food": 61863,
"no-luggage": 62011,
"no-meals": 61910,
"no-meals-ouline": 61993,
"no-meeting-room": 60238,
"no-photography": 61864,
"no-sim": 57548,
"no-stroller": 61871,
"no-transfer": 61909,
"north": 61920,
"north-east": 61921,
"north-west": 61922,
"not-accessible": 61694,
"not-interested": 57395,
"not-listed-location": 58741,
"not-started": 61649,
"note": 57455,
"note-add": 59548,
"notes": 57964,
"notification-important": 57348,
"notifications": 59380,

@@ -628,9 +1024,23 @@ "notifications-active": 59383,

"notifications-off": 59382,
"notifications-on": 59383,
"notifications-paused": 59384,
"now-wallpaper": 57788,
"now-widgets": 57789,
"offline-bolt": 59698,
"offline-pin": 59658,
"offline-share": 59845,
"ondemand-video": 58938,
"online-prediction": 61675,
"opacity": 59676,
"open-in-browser": 59549,
"open-in-full": 61902,
"open-in-new": 59550,
"open-with": 59551,
"outbond": 61992,
"outbox": 61279,
"outdoor-grill": 59975,
"outgoing-mail": 61650,
"outlet": 61908,
"outlined-flag": 57710,
"padding": 59848,
"pages": 59385,

@@ -642,5 +1052,12 @@ "pageview": 59552,

"panorama-fish-eye": 58380,
"panorama-fisheye": 58380,
"panorama-horizontal": 58381,
"panorama-horizontal-select": 61280,
"panorama-photosphere": 59849,
"panorama-photosphere-select": 59850,
"panorama-vertical": 58382,
"panorama-vertical-select": 61281,
"panorama-wide-angle": 58383,
"panorama-wide-angle-select": 61282,
"park": 60003,
"party-mode": 59386,

@@ -650,8 +1067,16 @@ "pause": 57396,

"pause-circle-outline": 57398,
"pause-presentation": 57578,
"payment": 59553,
"payments": 61283,
"pedal-bike": 60201,
"pending": 61284,
"pending-actions": 61883,
"people": 59387,
"people-alt": 59937,
"people-outline": 59388,
"perm-camera-mic": 59554,
"perm-contact-cal": 59555,
"perm-contact-calendar": 59555,
"perm-data-setting": 59556,
"perm-device-info": 59557,
"perm-device-information": 59557,

@@ -664,6 +1089,14 @@ "perm-identity": 59558,

"person-add": 59390,
"person-add-alt": 59981,
"person-add-alt-1": 61285,
"person-add-disabled": 59851,
"person-outline": 59391,
"person-pin": 58714,
"person-pin-circle": 58730,
"person-remove": 61286,
"person-remove-alt-1": 61287,
"person-search": 61702,
"personal-video": 58939,
"pest-control": 61690,
"pest-control-rodent": 61693,
"pets": 59677,

@@ -673,2 +1106,5 @@ "phone": 57549,

"phone-bluetooth-speaker": 58907,
"phone-callback": 58953,
"phone-disabled": 59852,
"phone-enabled": 59853,
"phone-forwarded": 58908,

@@ -689,2 +1125,4 @@ "phone-in-talk": 58909,

"photo-camera": 58386,
"photo-camera-back": 61288,
"photo-camera-front": 61289,
"photo-filter": 58427,

@@ -701,6 +1139,10 @@ "photo-library": 58387,

"pin-drop": 58718,
"pivot-table-chart": 59854,
"place": 58719,
"plagiarism": 59994,
"play-arrow": 57399,
"play-circle-fill": 57400,
"play-circle-filled": 57400,
"play-circle-outline": 57401,
"play-disabled": 61290,
"play-for-work": 59654,

@@ -710,3 +1152,6 @@ "playlist-add": 57403,

"playlist-play": 57439,
"plumbing": 61703,
"plus-one": 59392,
"point-of-sale": 61822,
"policy": 59927,
"poll": 59393,

@@ -717,11 +1162,23 @@ "polymer": 59563,

"portrait": 58390,
"post-add": 59936,
"power": 58940,
"power-input": 58166,
"power-off": 58950,
"power-settings-new": 59564,
"pregnant-woman": 59678,
"present-to-all": 57567,
"preview": 61893,
"print": 59565,
"print-disabled": 59855,
"priority-high": 58949,
"privacy-tip": 61660,
"psychology": 59978,
"public": 59403,
"public-off": 61898,
"publish": 57941,
"published-with-changes": 62002,
"push-pin": 61709,
"qr-code": 61291,
"qr-code-2": 57354,
"qr-code-scanner": 61958,
"query-builder": 59566,

@@ -732,11 +1189,22 @@ "question-answer": 59567,

"queue-play-next": 57446,
"quick-contacts-dialer": 57551,
"quick-contacts-mail": 57552,
"quickreply": 61292,
"radio": 57406,
"radio-button-checked": 59447,
"radio-button-off": 59446,
"radio-button-on": 59447,
"radio-button-unchecked": 59446,
"railway-alert": 59857,
"ramen-dining": 60004,
"rate-review": 58720,
"read-more": 61293,
"receipt": 59568,
"receipt-long": 61294,
"recent-actors": 57407,
"recommend": 59858,
"record-voice-over": 59679,
"redeem": 59569,
"redo": 57690,
"reduce-capacity": 61980,
"refresh": 58837,

@@ -746,3 +1214,5 @@ "remove": 57691,

"remove-circle-outline": 57693,
"remove-done": 59859,
"remove-from-queue": 57447,
"remove-moderator": 59860,
"remove-red-eye": 58391,

@@ -752,3 +1222,5 @@ "remove-shopping-cart": 59688,

"repeat": 57408,
"repeat-on": 59862,
"repeat-one": 57409,
"repeat-one-on": 59863,
"replay": 57410,

@@ -758,12 +1230,21 @@ "replay-10": 57433,

"replay-5": 57435,
"replay-circle-filled": 59864,
"reply": 57694,
"reply-all": 57695,
"report": 57696,
"report-off": 57712,
"report-problem": 59570,
"request-page": 61996,
"request-quote": 61878,
"reset-tv": 59865,
"restaurant": 58732,
"restaurant-menu": 58721,
"restore": 59571,
"restore-from-trash": 59704,
"restore-page": 59689,
"rice-bowl": 61941,
"ring-volume": 57553,
"roofing": 61953,
"room": 59572,
"room-preferences": 61880,
"room-service": 60233,

@@ -777,8 +1258,19 @@ "rotate-90-degrees-ccw": 58392,

"rss-feed": 57573,
"rtt": 59821,
"rule": 61890,
"rule-folder": 61897,
"run-circle": 61295,
"rv-hookup": 58946,
"sanitizer": 61981,
"satellite": 58722,
"save": 57697,
"save-alt": 57713,
"saved-search": 59921,
"scanner": 58153,
"scatter-plot": 57960,
"schedule": 59573,
"schedule-send": 59914,
"school": 59404,
"science": 59979,
"score": 57961,
"screen-lock-landscape": 57790,

@@ -788,14 +1280,25 @@ "screen-lock-portrait": 57791,

"screen-rotation": 57793,
"screen-search-desktop": 61296,
"screen-share": 57570,
"sd": 59869,
"sd-card": 58915,
"sd-storage": 57794,
"search": 59574,
"search-off": 60022,
"security": 58154,
"segment": 59723,
"select-all": 57698,
"self-improvement": 60024,
"send": 57699,
"send-and-archive": 59916,
"send-to-mobile": 61532,
"sensor-door": 61877,
"sensor-window": 61876,
"sentiment-dissatisfied": 59409,
"sentiment-neutral": 59410,
"sentiment-satisfied": 59411,
"sentiment-satisfied-alt": 57581,
"sentiment-very-dissatisfied": 59412,
"sentiment-very-satisfied": 59413,
"set-meal": 61930,
"settings": 59576,

@@ -807,2 +1310,3 @@ "settings-applications": 59577,

"settings-cell": 59580,
"settings-display": 59581,
"settings-ethernet": 59582,

@@ -821,4 +1325,6 @@ "settings-input-antenna": 59583,

"share": 59405,
"shield": 59872,
"shop": 59593,
"shop-two": 59594,
"shopping-bag": 61900,
"shopping-basket": 59595,

@@ -829,3 +1335,8 @@ "shopping-cart": 59596,

"shuffle": 57411,
"shuffle-on": 59873,
"shutter-speed": 58429,
"sick": 61984,
"signal-cellular-0-bar": 61608,
"signal-cellular-4-bar": 57800,
"signal-cellular-alt": 57858,
"signal-cellular-connected-no-internet-4-bar": 57805,

@@ -835,2 +1346,3 @@ "signal-cellular-no-sim": 57806,

"signal-cellular-off": 57808,
"signal-wifi-0-bar": 61616,
"signal-wifi-4-bar": 57816,

@@ -841,2 +1353,3 @@ "signal-wifi-4-bar-lock": 57817,

"sim-card-alert": 58916,
"single-bed": 59976,
"skip-next": 57412,

@@ -846,2 +1359,3 @@ "skip-previous": 57413,

"slow-motion-video": 57448,
"smart-button": 61889,
"smartphone": 58156,

@@ -852,5 +1366,11 @@ "smoke-free": 60234,

"sms-failed": 58918,
"snippet-folder": 61895,
"snooze": 57414,
"soap": 61874,
"sort": 57700,
"sort-by-alpha": 57427,
"source": 61892,
"south": 61923,
"south-east": 61924,
"south-west": 61925,
"spa": 60236,

@@ -863,6 +1383,30 @@ "space-bar": 57942,

"speaker-phone": 57554,
"speed": 59876,
"spellcheck": 59598,
"sports": 59952,
"sports-bar": 61939,
"sports-baseball": 59985,
"sports-basketball": 59942,
"sports-cricket": 59943,
"sports-esports": 59944,
"sports-football": 59945,
"sports-golf": 59946,
"sports-handball": 59955,
"sports-hockey": 59947,
"sports-kabaddi": 59956,
"sports-mma": 59948,
"sports-motorsports": 59949,
"sports-rugby": 59950,
"sports-soccer": 59951,
"sports-tennis": 59954,
"sports-volleyball": 59953,
"square-foot": 59977,
"stacked-bar-chart": 59878,
"stacked-line-chart": 61995,
"stairs": 61865,
"star": 59448,
"star-border": 59450,
"star-half": 59449,
"star-outline": 61551,
"star-rate": 61676,
"stars": 59600,

@@ -873,3 +1417,5 @@ "stay-current-landscape": 57555,

"stay-primary-portrait": 57558,
"sticky-note-2": 61948,
"stop": 57415,
"stop-circle": 61297,
"stop-screen-share": 57571,

@@ -879,5 +1425,8 @@ "storage": 57819,

"store-mall-directory": 58723,
"storefront": 59922,
"straighten": 58396,
"stream": 59881,
"streetview": 58734,
"strikethrough-s": 57943,
"stroller": 61870,
"style": 58397,

@@ -887,14 +1436,27 @@ "subdirectory-arrow-left": 58841,

"subject": 59602,
"subscript": 61713,
"subscriptions": 57444,
"subtitles": 57416,
"subtitles-off": 61298,
"subway": 58735,
"superscript": 61714,
"supervised-user-circle": 59705,
"supervisor-account": 59603,
"support": 61299,
"support-agent": 61666,
"surround-sound": 57417,
"swap-calls": 57559,
"swap-horiz": 59604,
"swap-horizontal-circle": 59699,
"swap-vert": 59605,
"swap-vert-circle": 59606,
"swap-vertical-circle": 59606,
"swipe": 59884,
"switch-account": 59885,
"switch-camera": 58398,
"switch-left": 61905,
"switch-right": 61906,
"switch-video": 58399,
"sync": 58919,
"sync-alt": 59928,
"sync-disabled": 58920,

@@ -904,17 +1466,37 @@ "sync-problem": 58921,

"system-update-alt": 59607,
"system-update-tv": 59607,
"tab": 59608,
"tab-unselected": 59609,
"table-chart": 57957,
"table-rows": 61697,
"table-view": 61886,
"tablet": 58159,
"tablet-android": 58160,
"tablet-mac": 58161,
"tag": 59887,
"tag-faces": 58400,
"takeout-dining": 60020,
"tap-and-play": 58923,
"tapas": 61929,
"taxi-alert": 61300,
"terrain": 58724,
"text-fields": 57954,
"text-format": 57701,
"text-rotate-up": 59706,
"text-rotate-vertical": 59707,
"text-rotation-angledown": 59708,
"text-rotation-angleup": 59709,
"text-rotation-down": 59710,
"text-rotation-none": 59711,
"text-snippet": 61894,
"textsms": 57560,
"texture": 58401,
"theater-comedy": 60006,
"theaters": 59610,
"thumb-down": 59611,
"thumb-down-alt": 59414,
"thumb-down-off-alt": 59890,
"thumb-up": 59612,
"thumb-up-alt": 59415,
"thumb-up-off-alt": 59891,
"thumbs-up-down": 59613,

@@ -931,5 +1513,9 @@ "time-to-leave": 58924,

"today": 59615,
"toggle-off": 59893,
"toggle-on": 59894,
"toll": 59616,
"tonality": 58407,
"topic": 61896,
"touch-app": 59667,
"tour": 61301,
"toys": 58162,

@@ -942,6 +1528,10 @@ "track-changes": 59617,

"transform": 58408,
"transit-enterexit": 58745,
"translate": 59618,
"trending-down": 59619,
"trending-flat": 59620,
"trending-neutral": 59620,
"trending-up": 59621,
"trip-origin": 58747,
"tty": 61866,
"tune": 58409,

@@ -951,2 +1541,5 @@ "turned-in": 59622,

"tv": 58163,
"tv-off": 58951,
"two-wheeler": 59897,
"umbrella": 61869,
"unarchive": 57705,

@@ -956,4 +1549,10 @@ "undo": 57702,

"unfold-more": 58839,
"unpublished": 62006,
"unsubscribe": 57579,
"update": 59683,
"update-disabled": 57461,
"upgrade": 61691,
"upload-file": 59900,
"usb": 57824,
"verified": 61302,
"verified-user": 59624,

@@ -963,6 +1562,10 @@ "vertical-align-bottom": 57944,

"vertical-align-top": 57946,
"vertical-distribute": 57462,
"vertical-split": 59721,
"vibration": 58925,
"video-call": 57456,
"video-collection": 57418,
"video-label": 57457,
"video-library": 57418,
"video-settings": 60021,
"videocam": 57419,

@@ -975,2 +1578,3 @@ "videocam-off": 57420,

"view-column": 59628,
"view-comfortable": 58410,
"view-comfy": 58410,

@@ -980,5 +1584,7 @@ "view-compact": 58411,

"view-headline": 59630,
"view-in-ar": 59902,
"view-list": 59631,
"view-module": 59632,
"view-quilt": 59633,
"view-sidebar": 61716,
"view-stream": 59634,

@@ -990,2 +1596,3 @@ "view-week": 59635,

"voice-chat": 58926,
"voice-over-off": 59722,
"voicemail": 57561,

@@ -996,8 +1603,16 @@ "volume-down": 57421,

"volume-up": 57424,
"volunteer-activism": 60016,
"vpn-key": 57562,
"vpn-lock": 58927,
"wallet-giftcard": 59638,
"wallet-membership": 59639,
"wallet-travel": 59640,
"wallpaper": 57788,
"warning": 57346,
"wash": 61873,
"watch": 58164,
"watch-later": 59684,
"water-damage": 61955,
"waterfall-chart": 59904,
"waves": 57718,
"wb-auto": 58412,

@@ -1007,3 +1622,5 @@ "wb-cloudy": 58413,

"wb-iridescent": 58422,
"wb-shade": 59905,
"wb-sunny": 58416,
"wb-twighlight": 59906,
"wc": 58941,

@@ -1013,9 +1630,22 @@ "web": 57425,

"weekend": 57707,
"west": 61926,
"whatshot": 59406,
"wheelchair-pickup": 61867,
"where-to-vote": 57719,
"widgets": 57789,
"wifi": 58942,
"wifi-calling": 61303,
"wifi-lock": 57825,
"wifi-off": 58952,
"wifi-protected-setup": 61692,
"wifi-tethering": 57826,
"wine-bar": 61928,
"work": 59641,
"work-off": 59714,
"work-outline": 59715,
"workspaces-filled": 59917,
"workspaces-outline": 59919,
"wrap-text": 57947,
"wrong-location": 61304,
"wysiwyg": 61891,
"youtube-searched-for": 59642,

@@ -1022,0 +1652,0 @@ "zoom-in": 59647,

export { default as createIconSet } from './lib/create-icon-set';
export {
default as createIconSetFromFontello,
} from './lib/create-icon-set-from-fontello';
export {
default as createIconSetFromIcoMoon,
} from './lib/create-icon-set-from-icomoon';
export {
default as createMultiStyleIconSet,
} from './lib/create-multi-style-icon-set';
export { default as createMultiStyleIconSet } from './lib/create-multi-style-icon-set';
export { default as createIconSetFromFontello } from './lib/create-icon-set-from-fontello';
export { default as createIconSetFromIcoMoon } from './lib/create-icon-set-from-icomoon';

@@ -12,8 +12,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;

@@ -0,1 +1,2 @@

import { Platform } from './react-native';
import createMultiStyleIconSet from './create-multi-style-icon-set';

@@ -31,6 +32,8 @@

function createFontAwesomeStyle(styleName, fontWeight, family = fontFamily) {
function createFontAwesomeStyle(style, fontWeight, family = fontFamily) {
let styleName = style;
let fontFile = `FontAwesome5_${pro ? `Pro_${styleName}` : styleName}.ttf`;
if (styleName === 'Brands') {
styleName = 'Regular';
fontFile = 'FontAwesome5_Brands.ttf';

@@ -42,5 +45,8 @@ }

fontFile,
fontStyle: {
fontWeight,
},
fontStyle: Platform.select({
ios: {
fontWeight,
},
default: {},
}),
glyphMap,

@@ -51,9 +57,9 @@ };

const brandIcons = createFontAwesomeStyle(
'Regular',
'Brands',
'400',
'FontAwesome5Brands',
'FontAwesome5Brands'
);
const lightIcons = createFontAwesomeStyle('Light', '100');
const lightIcons = createFontAwesomeStyle('Light', '300');
const regularIcons = createFontAwesomeStyle('Regular', '400');
const solidIcons = createFontAwesomeStyle('Solid', '700');
const solidIcons = createFontAwesomeStyle('Solid', '900');
const Icon = createMultiStyleIconSet(

@@ -70,3 +76,3 @@ {

glyphValidator,
},
}
);

@@ -73,0 +79,0 @@

@@ -6,3 +6,3 @@ import createIconSet from './create-icon-set';

fontFamilyArg,
fontFile,
fontFile
) {

@@ -9,0 +9,0 @@ const glyphMap = {};

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { NativeModules, Platform, PixelRatio, processColor, Text } from 'react-native';
import {
NativeModules,
Platform,
PixelRatio,
processColor,
Text,
} from './react-native';
import ensureNativeModuleAvailable from './ensure-native-module-available';
import createIconSourceCache from './create-icon-source-cache';
import createIconButtonComponent from './icon-button';
import createTabBarItemIOSComponent from './tab-bar-item-ios';
import createToolbarAndroidComponent from './toolbar-android';

@@ -28,3 +34,3 @@ export const NativeIconAPI =

const fontReference = Platform.select({
windows: `Assets/${fontFile}#${fontFamily}`,
windows: `/Assets/${fontFile}#${fontFamily}`,
android: fontBasename,

@@ -38,2 +44,4 @@ web: fontBasename,

class Icon extends PureComponent {
root = null;
static propTypes = {

@@ -43,3 +51,3 @@ allowFontScaling: PropTypes.bool,

size: PropTypes.number,
color: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
color: PropTypes.any, // eslint-disable-line react/forbid-prop-types
children: PropTypes.node,

@@ -54,4 +62,2 @@ style: PropTypes.any, // eslint-disable-line react/forbid-prop-types

root = null;
setNativeProps(nativeProps) {

@@ -72,3 +78,3 @@ if (this.root) {

if (typeof glyph === 'number') {
glyph = String.fromCharCode(glyph);
glyph = String.fromCodePoint(glyph);
}

@@ -99,5 +105,13 @@

const imageSourceCache = {};
const imageSourceCache = createIconSourceCache();
function getImageSource(
function resolveGlyph(name) {
const glyph = glyphMap[name] || '?';
if (typeof glyph === 'number') {
return String.fromCodePoint(glyph);
}
return glyph;
}
function getImageSourceSync(
name,

@@ -109,50 +123,63 @@ size = DEFAULT_ICON_SIZE,

let glyph = glyphMap[name] || '?';
if (typeof glyph === 'number') {
glyph = String.fromCharCode(glyph);
const glyph = resolveGlyph(name);
const processedColor = processColor(color);
const cacheKey = `${glyph}:${size}:${processedColor}`;
if (imageSourceCache.has(cacheKey)) {
return imageSourceCache.get(cacheKey);
}
try {
const imagePath = NativeIconAPI.getImageForFontSync(
fontReference,
glyph,
size,
processedColor
);
const value = { uri: imagePath, scale: PixelRatio.get() };
imageSourceCache.setValue(cacheKey, value);
return value;
} catch (error) {
imageSourceCache.setError(cacheKey, error);
throw error;
}
}
async function getImageSource(
name,
size = DEFAULT_ICON_SIZE,
color = DEFAULT_ICON_COLOR
) {
ensureNativeModuleAvailable();
const glyph = resolveGlyph(name);
const processedColor = processColor(color);
const cacheKey = `${glyph}:${size}:${processedColor}`;
const scale = PixelRatio.get();
return new Promise((resolve, reject) => {
const cached = imageSourceCache[cacheKey];
if (typeof cached !== 'undefined') {
if (!cached || cached instanceof Error) {
reject(cached);
} else {
resolve({ uri: cached, scale });
}
} else {
NativeIconAPI.getImageForFont(
fontReference,
glyph,
size,
processedColor,
(err, image) => {
const error = typeof err === 'string' ? new Error(err) : err;
imageSourceCache[cacheKey] = image || error || false;
if (!error && image) {
resolve({ uri: image, scale });
} else {
reject(error);
}
}
);
}
});
if (imageSourceCache.has(cacheKey)) {
return imageSourceCache.get(cacheKey);
}
try {
const imagePath = await NativeIconAPI.getImageForFont(
fontReference,
glyph,
size,
processedColor
);
const value = { uri: imagePath, scale: PixelRatio.get() };
imageSourceCache.setValue(cacheKey, value);
return value;
} catch (error) {
imageSourceCache.setError(cacheKey, error);
throw error;
}
}
function loadFont(file = fontFile) {
async function loadFont(file = fontFile) {
if (Platform.OS === 'ios') {
ensureNativeModuleAvailable();
if (!file) {
return Promise.reject(
new Error('Unable to load font, because no file was specified. ')
);
throw new Error('Unable to load font, because no file was specified. ');
}
return NativeIconAPI.loadFontWithFileName(...file.split('.'));
await NativeIconAPI.loadFontWithFileName(...file.split('.'));
}
return Promise.resolve();
}

@@ -178,7 +205,4 @@

Icon.TabBarItemIOS = Icon.TabBarItem;
Icon.ToolbarAndroid = createToolbarAndroidComponent(
IconNamePropType,
getImageSource
);
Icon.getImageSource = getImageSource;
Icon.getImageSourceSync = getImageSourceSync;
Icon.loadFont = loadFont;

@@ -185,0 +209,0 @@ Icon.hasIcon = hasIcon;

@@ -30,3 +30,3 @@ import React, { PureComponent } from 'react';

style.fontFile || '',
style.fontStyle || {},
style.fontStyle || {}
);

@@ -43,3 +43,3 @@

: result,
options.defaultStyle,
options.defaultStyle
);

@@ -91,3 +91,3 @@ }

color = DEFAULT_ICON_COLOR,
style = options.defaultStyle,
style = options.defaultStyle
) {

@@ -137,3 +137,2 @@ return getStyledIconSet(style, name).getImageSource(name, size, color);

Icon.TabBarItemIOS = createStyledIconClass('TabBarItemIOS');
Icon.ToolbarAndroid = createStyledIconClass('ToolbarAndroid');
Icon.getStyledIconSet = getStyledIconSet;

@@ -140,0 +139,0 @@ Icon.getImageSource = getImageSource;

@@ -1,2 +0,2 @@

import { Platform, NativeModules } from 'react-native';
import { Platform, NativeModules } from './react-native';

@@ -3,0 +3,0 @@ const NativeIconAPI =

@@ -1,2 +0,3 @@

const _ = require('lodash');
const lodashTemplate = require('lodash.template');
const fromPairs = require('lodash.frompairs');
const fs = require('fs');

@@ -41,3 +42,3 @@

})
.reduce((acc, glyphs) => Object.assign(acc, _.fromPairs(glyphs)), {});
.reduce((acc, glyphs) => Object.assign(acc, fromPairs(glyphs)), {});
}

@@ -56,3 +57,3 @@

if (template) {
return _.template(template)(Object.assign({ glyphMap: content }, data));
return lodashTemplate(template)({ glyphMap: content, ...data });
}

@@ -59,0 +60,0 @@ return content;

@@ -1,7 +0,7 @@

import isString from 'lodash/isString';
import omit from 'lodash/omit';
import pick from 'lodash/pick';
import isString from 'lodash.isstring';
import omit from 'lodash.omit';
import pick from 'lodash.pick';
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { StyleSheet, Text, TouchableHighlight, View } from 'react-native';
import { StyleSheet, Text, TouchableHighlight, View } from './react-native';

@@ -78,3 +78,3 @@ const styles = StyleSheet.create({

borderRadius: PropTypes.number,
color: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
color: PropTypes.any, // eslint-disable-line react/forbid-prop-types
size: PropTypes.number,

@@ -81,0 +81,0 @@ iconStyle: PropTypes.any, // eslint-disable-line react/forbid-prop-types

/* eslint-disable react/no-unused-prop-types */
import isEqual from 'lodash/isEqual';
import pick from 'lodash/pick';
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { TabBarIOS } from 'react-native';
import isEqual from "lodash.isequal";
import pick from "lodash.pick";
import React, { PureComponent } from "react";
import PropTypes from "prop-types";
const TabBarIOS = {
Item: function () {},
};
const ICON_PROP_NAMES = ['iconName', 'iconSize', 'iconColor'];
const ICON_PROP_NAMES = ["iconName", "iconSize", "iconColor"];
const SELECTED_ICON_PROP_NAMES = [
...ICON_PROP_NAMES,
'selectedIconName',
'selectedIconColor',
"selectedIconName",
"selectedIconColor",
];
const arePropsEqual = keys => (prevProps, nextProps) =>
const arePropsEqual = (keys) => (prevProps, nextProps) =>
isEqual(pick(prevProps, keys), pick(nextProps, keys));

@@ -30,7 +32,4 @@

iconSize: PropTypes.number,
iconColor: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
selectedIconColor: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number,
]),
iconColor: PropTypes.any, // eslint-disable-line react/forbid-prop-types
selectedIconColor: PropTypes.any, // eslint-disable-line react/forbid-prop-types
};

@@ -37,0 +36,0 @@

@@ -12,8 +12,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;

@@ -12,8 +12,9 @@ /**

export default iconSet;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;

@@ -12,8 +12,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;

@@ -12,8 +12,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;

@@ -12,8 +12,8 @@ /**

export default iconSet;
export const Button = iconSet.Button;
export const TabBarItem = iconSet.TabBarItem;
export const TabBarItemIOS = iconSet.TabBarItemIOS;
export const ToolbarAndroid = iconSet.ToolbarAndroid;
export const getImageSource = iconSet.getImageSource;
export const {
Button,
TabBarItem,
TabBarItemIOS,
getImageSource,
getImageSourceSync,
} = iconSet;
{
"name": "@expo/vector-icons",
"sideEffects": false,
"version": "11.0.0",
"version": "12.0.0",
"description": "Built-in support for popular icon fonts and the tooling to create your own Icon components from your font and glyph map. This is a wrapper around react-native-vector-icons to make it compatible with Expo.",

@@ -44,9 +44,14 @@ "main": "build/IconsLazy.js",

"dependencies": {
"lodash": "^4.17.4"
"lodash.frompairs": "^4.0.1",
"lodash.isequal": "^4.5.0",
"lodash.isstring": "^4.0.1",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"lodash.template": "^4.5.0"
},
"devDependencies": {
"@types/react-native": "~0.57",
"expo-font": "^3.0.1",
"@types/react-native": "~0.63",
"expo-font": "^8.4.0",
"expo-module-scripts": "^1.0.0"
}
}

@@ -29,2 +29,25 @@ # @expo/vector-icons

for more usage see [Expo icons documentation](https://docs.expo.io/versions/latest/guides/icons/)
for more usage see [Expo icons documentation](https://docs.expo.io/guides/icons/)
## Maintainers
### How to upgrade the react-native-vector-icons version
I'll be honest with you, it's not straightforward. You should set aside about an hour to do this.
1. Clone [react-native-vector-icons](https://github.com/oblador/react-native-vector-icons)
2. Copy files from the cloned directory into `src/vendor/react-native-vector-icons`, except the dotfiles.
3. Run `git status` and look at the untracked files. Remove anything that doesn't seem needed. For example, remove package.json, react-native.config.js, react-native.osx.js. Things to look out for are new icon fonts or new `create-*` files.
4. Run `git diff **/*.js` - do any of the changes look like they should be synced over to the equivalent `.ts` files in `src`?/
- ToolBarAndroid and TabBarIOS are not included in @expo/vector-icons
- Neither are the native vendor font loading or image source related methods.
- Probably there won't be anything important. The main thing to look out for are user-facing API changes, the `@expo/vector-icons` internals are different enough that you don't need to worry about it.
- Were any dependencies added? Check imports against those in the current package.json, see why they were added - maybe they support the `bin` scripts, in which case we need them.
5. Run `yarn` when you're done and it'll copy vendor files over to build.
6. Go to the website directory, test it out. If new icons were added, ensure that they work here.
- While you're here, it would be kind of you to update the Expo SDK version to latest.
7. You are done! Open a PR, have someone else like @brentvatne look at it, merge it. The website will be deployed when you merge to master.
### How to deploy the website
Create a commit on master.

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc