You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
378 B
12 lines
378 B
import {
|
|
AntDesign,
|
|
Entypo,
|
|
FontAwesome,
|
|
MaterialCommunityIcons,
|
|
} from "@expo/vector-icons";
|
|
|
|
export type AntDesignIconNames = keyof typeof AntDesign.glyphMap;
|
|
export type EntypoIconNames = keyof typeof Entypo.glyphMap;
|
|
export type FontAwesomeIconNames = keyof typeof FontAwesome.glyphMap;
|
|
export type CommunityIconNames = keyof typeof MaterialCommunityIcons.glyphMap;
|