forked from oblador/react-native-vector-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add support for Ant Design fonts * Automatically build antd icons * add AntDesign icons to directory & IconExplorer * add AntDesign.ttf to IconExplorer ios Info.plist * Add AntDesign to IconExplorer iOS project * Update build script to automate builds * Remove @bodhiveggie/antd-icons dependency
- Loading branch information
Showing
11 changed files
with
353 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** | ||
* AntDesign icon set component. | ||
* Usage: <AntDesign name="icon-name" size={20} color="#4F8EF7" /> | ||
*/ | ||
|
||
import createIconSet from './lib/create-icon-set'; | ||
import glyphMap from './glyphmaps/AntDesign.json'; | ||
|
||
const iconSet = createIconSet(glyphMap, 'AntDesign', 'AntDesign.ttf'); | ||
|
||
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; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.