Skip to content

Commit

Permalink
Update MaterialCommunityIcons to 5.3.45 (#1184)
Browse files Browse the repository at this point in the history
* update MaterialCommunityIcons to 5.3.45

* update readme
  • Loading branch information
andreialecu committed Jul 2, 2020
1 parent 9e9bae9 commit 39e0276
Show file tree
Hide file tree
Showing 8 changed files with 5,355 additions and 4,105 deletions.
Binary file modified Fonts/MaterialCommunityIcons.ttf
Binary file not shown.
1 change: 1 addition & 0 deletions MaterialCommunityIcons.js
Expand Up @@ -17,3 +17,4 @@ export const {
getImageSource,
getImageSourceSync,
} = iconSet;

2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -42,7 +42,7 @@ Perfect for buttons, logos and nav/tab bars. Easy to extend, style and integrate
- [`Foundation`](http://zurb.com/playground/foundation-icon-fonts-3) by ZURB, Inc. (v3.0, **283** icons)
- [`Ionicons`](https://ionicons.com/) by Ben Sperry (v4.2.4, **696** icons)
- [`MaterialIcons`](https://www.google.com/design/icons/) by Google, Inc. (v3.0.1, **932** icons)
- [`MaterialCommunityIcons`](https://materialdesignicons.com/) by MaterialDesignIcons.com (v4.0.96, **4416** icons)
- [`MaterialCommunityIcons`](https://materialdesignicons.com/) by MaterialDesignIcons.com (v5.3.45, **5346** icons)
- [`Octicons`](http://octicons.github.com) by Github, Inc. (v8.4.1, **184** icons)
- [`Zocial`](http://zocial.smcllns.com/) by Sam Collins (v1.0, **100** icons)
- [`SimpleLineIcons`](https://simplelineicons.github.io/) by Sabbir & Contributors (v2.4.1, **189** icons)
Expand Down
2 changes: 1 addition & 1 deletion directory/src/App.js
Expand Up @@ -16,7 +16,7 @@ class Icon extends PureComponent {
render() {
return (
<span style={{ fontFamily: this.props.family }} {...this.props}>
{String.fromCharCode(IconFamilies[this.props.family][this.props.name])}
{String.fromCodePoint(IconFamilies[this.props.family][this.props.name])}
</span>
);
}
Expand Down

0 comments on commit 39e0276

Please sign in to comment.